vclxtoolkit.cxx (27ead02a) vclxtoolkit.cxx (9ecc082c)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 57 unchanged lines hidden (view full) ---

66#include <toolkit/awt/vclxwindows.hxx>
67#include <toolkit/awt/vclxsystemdependentwindow.hxx>
68#include <toolkit/awt/vclxregion.hxx>
69#include <toolkit/awt/vclxtoolkit.hxx>
70#include <toolkit/awt/vclxtabpagecontainer.hxx>
71#include <toolkit/awt/vclxtabpagemodel.hxx>
72
73#include <toolkit/awt/xsimpleanimation.hxx>
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 57 unchanged lines hidden (view full) ---

66#include <toolkit/awt/vclxwindows.hxx>
67#include <toolkit/awt/vclxsystemdependentwindow.hxx>
68#include <toolkit/awt/vclxregion.hxx>
69#include <toolkit/awt/vclxtoolkit.hxx>
70#include <toolkit/awt/vclxtabpagecontainer.hxx>
71#include <toolkit/awt/vclxtabpagemodel.hxx>
72
73#include <toolkit/awt/xsimpleanimation.hxx>
74#include <toolkit/awt/xthrobber.hxx>
75#include <toolkit/awt/animatedimagespeer.hxx>
76#include <toolkit/awt/vclxtopwindow.hxx>
77#include <toolkit/awt/vclxwindow.hxx>
78#include <toolkit/helper/vclunohelper.hxx>
79#include <toolkit/helper/unowrapper.hxx>
80#include <toolkit/helper/servicenames.hxx>
81
82

--- 231 unchanged lines hidden (view full) ---

314 { "querybox", WINDOW_QUERYBOX },
315 { "radiobutton", WINDOW_RADIOBUTTON },
316 { "scrollbar", WINDOW_SCROLLBAR },
317 { "scrollbarbox", WINDOW_SCROLLBARBOX },
318 { "simpleanimation", WINDOW_CONTROL },
319 { "animatedimages", WINDOW_CONTROL },
320 { "spinbutton", WINDOW_SPINBUTTON },
321 { "spinfield", WINDOW_SPINFIELD },
74#include <toolkit/awt/animatedimagespeer.hxx>
75#include <toolkit/awt/vclxtopwindow.hxx>
76#include <toolkit/awt/vclxwindow.hxx>
77#include <toolkit/helper/vclunohelper.hxx>
78#include <toolkit/helper/unowrapper.hxx>
79#include <toolkit/helper/servicenames.hxx>
80
81

--- 231 unchanged lines hidden (view full) ---

313 { "querybox", WINDOW_QUERYBOX },
314 { "radiobutton", WINDOW_RADIOBUTTON },
315 { "scrollbar", WINDOW_SCROLLBAR },
316 { "scrollbarbox", WINDOW_SCROLLBARBOX },
317 { "simpleanimation", WINDOW_CONTROL },
318 { "animatedimages", WINDOW_CONTROL },
319 { "spinbutton", WINDOW_SPINBUTTON },
320 { "spinfield", WINDOW_SPINFIELD },
322 { "throbber", WINDOW_CONTROL },
323 { "splitter", WINDOW_SPLITTER },
324 { "splitwindow", WINDOW_SPLITWINDOW },
325 { "statusbar", WINDOW_STATUSBAR },
326 { "systemchildwindow", VCLWINDOW_SYSTEMCHILDWINDOW },
327 { "tabcontrol", WINDOW_TABCONTROL },
328 { "tabdialog", WINDOW_TABDIALOG },
329 { "tabpage", WINDOW_TABPAGE },
330 { "timebox", WINDOW_TIMEBOX },

--- 680 unchanged lines hidden (view full) ---

1011 case WINDOW_CONTROL:
1012 if ( aServiceName.EqualsAscii( "simpleanimation" ) )
1013 {
1014 pNewWindow = new Throbber( pParent, nWinBits, Throbber::IMAGES_NONE );
1015 ((Throbber*)pNewWindow)->SetScaleMode( css::awt::ImageScaleMode::Anisotropic );
1016 // (compatibility)
1017 *ppNewComp = new ::toolkit::XSimpleAnimation;
1018 }
321 { "splitter", WINDOW_SPLITTER },
322 { "splitwindow", WINDOW_SPLITWINDOW },
323 { "statusbar", WINDOW_STATUSBAR },
324 { "systemchildwindow", VCLWINDOW_SYSTEMCHILDWINDOW },
325 { "tabcontrol", WINDOW_TABCONTROL },
326 { "tabdialog", WINDOW_TABDIALOG },
327 { "tabpage", WINDOW_TABPAGE },
328 { "timebox", WINDOW_TIMEBOX },

--- 680 unchanged lines hidden (view full) ---

1009 case WINDOW_CONTROL:
1010 if ( aServiceName.EqualsAscii( "simpleanimation" ) )
1011 {
1012 pNewWindow = new Throbber( pParent, nWinBits, Throbber::IMAGES_NONE );
1013 ((Throbber*)pNewWindow)->SetScaleMode( css::awt::ImageScaleMode::Anisotropic );
1014 // (compatibility)
1015 *ppNewComp = new ::toolkit::XSimpleAnimation;
1016 }
1019 else if ( aServiceName.EqualsAscii( "throbber" ) )
1020 {
1021 pNewWindow = new Throbber( pParent, nWinBits, Throbber::IMAGES_NONE );
1022 ((Throbber*)pNewWindow)->SetScaleMode( css::awt::ImageScaleMode::Anisotropic );
1023 // (compatibility)
1024 *ppNewComp = new ::toolkit::XThrobber;
1025 }
1026 else if ( rDescriptor.WindowServiceName.equalsIgnoreAsciiCase(
1027 ::rtl::OUString::createFromAscii("tabpagecontainer") ) )
1028 {
1029 pNewWindow = new TabControl( pParent, nWinBits );
1030 *ppNewComp = new VCLXTabPageContainer;
1031 }
1032 else if ( aServiceName.EqualsAscii( "animatedimages" ) )
1033 {

--- 710 unchanged lines hidden ---
1017 else if ( rDescriptor.WindowServiceName.equalsIgnoreAsciiCase(
1018 ::rtl::OUString::createFromAscii("tabpagecontainer") ) )
1019 {
1020 pNewWindow = new TabControl( pParent, nWinBits );
1021 *ppNewComp = new VCLXTabPageContainer;
1022 }
1023 else if ( aServiceName.EqualsAscii( "animatedimages" ) )
1024 {

--- 710 unchanged lines hidden ---