Lines Matching refs:window

393     Window* window = 0; //sfx2CreateWindow (&component, parent, name, attributes);  in implCreateWidget()  local
394 if (!window) in implCreateWidget()
395 window = layoutCreateWindow (&component, parent, name, attributes); in implCreateWidget()
398 if (window) in implCreateWidget()
400 window->SetCreatedWithToolkit( sal_True ); in implCreateWidget()
404 window->SetComponentInterface( component ); in implCreateWidget()
406 window->Show(); in implCreateWidget()
437 Window* window = 0; in layoutCreateWindow() local
447 window = new Dialog( parent, ImplGetWinBits( attributes, 0 ) ); in layoutCreateWindow()
456 window = new ModalDialog( parent, ImplGetWinBits( attributes, 0 ) ); in layoutCreateWindow()
465 window = new ModelessDialog (parent, ImplGetWinBits (attributes, 0)); in layoutCreateWindow()
474 window = new ClosingDialog (parent, ImplGetWinBits (attributes, 0)); in layoutCreateWindow()
483 window = new ClosingModalDialog( parent, in layoutCreateWindow()
493 window = new ClosingModelessDialog (parent, ImplGetWinBits (attributes, 0)); in layoutCreateWindow()
500 window = new TabControl( parent, ImplGetWinBits( attributes, WINDOW_TABCONTROL ) ); in layoutCreateWindow()
506 window = new FixedImage( parent, ImplGetWinBits( attributes, 0 ) ); in layoutCreateWindow()
511 window = new FixedImage( parent, ImplGetWinBits( attributes, 0 ) ); in layoutCreateWindow()
522 window = new FixedLine( parent, nStyle ); in layoutCreateWindow()
527 window = new PushButton( parent, ImplGetWinBits( attributes, 0 ) ); in layoutCreateWindow()
528 *component = new layoutimpl::VCLXOKButton( window ); in layoutCreateWindow()
529 window->SetType (WINDOW_OKBUTTON); in layoutCreateWindow()
533 window = new PushButton( parent, ImplGetWinBits( attributes, 0 ) ); in layoutCreateWindow()
534 *component = new layoutimpl::VCLXCancelButton( window ); in layoutCreateWindow()
535 window->SetType (WINDOW_CANCELBUTTON); in layoutCreateWindow()
539 window = new PushButton( parent, ImplGetWinBits( attributes, 0 ) ); in layoutCreateWindow()
540 *component = new layoutimpl::VCLXYesButton( window ); in layoutCreateWindow()
541 window->SetType (WINDOW_OKBUTTON); in layoutCreateWindow()
545 window = new PushButton( parent, ImplGetWinBits( attributes, 0 ) ); in layoutCreateWindow()
546 window->SetType (WINDOW_CANCELBUTTON); in layoutCreateWindow()
547 *component = new layoutimpl::VCLXNoButton( window ); in layoutCreateWindow()
551 window = new PushButton( parent, ImplGetWinBits( attributes, 0 ) ); in layoutCreateWindow()
552 *component = new layoutimpl::VCLXRetryButton( window ); in layoutCreateWindow()
556 window = new PushButton( parent, ImplGetWinBits( attributes, 0 ) ); in layoutCreateWindow()
557 *component = new layoutimpl::VCLXIgnoreButton( window ); in layoutCreateWindow()
561 window = new PushButton( parent, ImplGetWinBits( attributes, 0 ) ); in layoutCreateWindow()
562 *component = new layoutimpl::VCLXResetButton( window ); in layoutCreateWindow()
566 window = new PushButton( parent, ImplGetWinBits( attributes, 0 ) ); in layoutCreateWindow()
567 *component = new layoutimpl::VCLXApplyButton( window ); in layoutCreateWindow()
571 window = new PushButton( parent, ImplGetWinBits( attributes, 0 ) ); in layoutCreateWindow()
572 *component = new layoutimpl::VCLXHelpButton( window ); in layoutCreateWindow()
573 window->SetType (WINDOW_HELPBUTTON); in layoutCreateWindow()
577 window = new PushButton( parent, ImplGetWinBits( attributes, 0 ) ); in layoutCreateWindow()
578 *component = new layoutimpl::VCLXMoreButton( window ); in layoutCreateWindow()
579 window->SetType (WINDOW_MOREBUTTON); in layoutCreateWindow()
583 window = new PushButton( parent, ImplGetWinBits( attributes, 0 ) ); in layoutCreateWindow()
584 *component = new layoutimpl::VCLXAdvancedButton( window ); in layoutCreateWindow()
588 window = new Control( parent, ImplGetWinBits( attributes, 0 ) ); in layoutCreateWindow()
592 *component = new layoutimpl::VCLXPlugin( window, ImplGetWinBits( attributes, 0 ) ); in layoutCreateWindow()
611 window = new Dialog( parent, nStyle ); in layoutCreateWindow()
616 window = new TabPage( parent, nStyle ); in layoutCreateWindow()
617 *component = new VCLXTabPage( window ); in layoutCreateWindow()
624 window = new Window( parent, ImplGetWinBits( attributes, 0 ) ); in layoutCreateWindow()
630 window = new ListBox (parent, ImplGetWinBits (attributes, 0)); in layoutCreateWindow()
637 window = new ListBox (parent, ImplGetWinBits (attributes, 0)); in layoutCreateWindow()
640 return window; in layoutCreateWindow()