Home
last modified time | relevance | path

Searched refs:Theme (Results 1 – 25 of 134) sorted by relevance

123456

/AOO41X/main/sfx2/source/sidebar/
H A DTabBar.cxx63 SetBackground(Theme::GetPaint(Theme::Paint_TabBarBackground).GetWallpaper()); in TabBar()
66 Theme::GetImage(Theme::Image_TabBarMenu), in TabBar()
67 Theme::IsHighContrastMode() in TabBar()
92 const sal_Int32 nHorizontalPadding (Theme::GetInteger(Theme::Int_TabMenuSeparatorPadding)); in Paint()
93 SetLineColor(Theme::GetColor(Theme::Color_TabMenuSeparator)); in Paint()
104 return Theme::GetInteger(Theme::Int_TabItemWidth) in GetDefaultWidth()
105 + Theme::GetInteger(Theme::Int_TabBarLeftPadding) in GetDefaultWidth()
106 + Theme::GetInteger(Theme::Int_TabBarRightPadding); in GetDefaultWidth()
163 Theme::IsHighContrastMode() in UpdateButtonIcons()
167 mpMenuButton->SetModeImage(Theme::GetImage(Theme::Image_TabBarMenu), eColorMode); in UpdateButtonIcons()
[all …]
H A DDeck.cxx150 const int nBorderSize (Theme::GetInteger(Theme::Int_DeckBorderSize)); in GetContentArea()
153 Theme::GetInteger(Theme::Int_DeckLeftPadding) + nBorderSize, in GetContentArea()
154 Theme::GetInteger(Theme::Int_DeckTopPadding) + nBorderSize, in GetContentArea()
155 aWindowSize.Width() - 1 - Theme::GetInteger(Theme::Int_DeckRightPadding) - nBorderSize, in GetContentArea()
156 aWindowSize.Height() - 1 - Theme::GetInteger(Theme::Int_DeckBottomPadding) - nBorderSize); in GetContentArea()
179 Theme::GetInteger(Theme::Int_DeckLeftPadding), in Paint()
180 Theme::GetInteger(Theme::Int_DeckTopPadding), in Paint()
181 Theme::GetInteger(Theme::Int_DeckRightPadding), in Paint()
182 Theme::GetInteger(Theme::Int_DeckBottomPadding)); in Paint()
194 Theme::GetPaint(Theme::Paint_DeckBackground), in Paint()
[all …]
H A DTheme.cxx41 ::rtl::Reference<Theme> Theme::mpInstance;
44 Theme& Theme::GetCurrentTheme (void) in GetCurrentTheme()
48 mpInstance.set(new Theme()); in GetCurrentTheme()
55 Theme::Theme (void) in Theme() function in sfx2::sidebar::Theme
75 Theme::~Theme (void) in ~Theme()
80 Image Theme::GetImage (const ThemeItem eItem) in GetImage()
85 const Theme& rTheme (GetCurrentTheme()); in GetImage()
90 Color Theme::GetColor (const ThemeItem eItem) in GetColor()
95 const Theme& rTheme (GetCurrentTheme()); in GetColor()
105 const Paint& Theme::GetPaint (const ThemeItem eItem) in GetPaint()
[all …]
H A DToolBoxBackground.cxx42 ? Tools::RectangleToSvBorder(Theme::GetRectangle(Theme::Rect_ToolBoxPadding)) in ToolBoxBackground()
46 SetBackground(Theme::GetPaint(Theme::Paint_ToolBoxBackground).GetWallpaper()); in ToolBoxBackground()
105 const sidebar::Paint aTopLeftBorderPaint (Theme::GetPaint(Theme::Paint_ToolBoxBorderTopLeft)); in Paint()
106 …const sidebar::Paint aCenterBorderPaint (Theme::GetPaint(Theme::Paint_ToolBoxBorderCenterCorners)); in Paint()
107 …const sidebar::Paint aBottomRightBorderPaint (Theme::GetPaint(Theme::Paint_ToolBoxBorderBottomRigh… in Paint()
108 const Rectangle aBorderSize (Theme::GetRectangle(Theme::Rect_ToolBoxBorder)); in Paint()
125 SetBackground(Theme::GetPaint(Theme::Paint_ToolBoxBackground).GetWallpaper()); in DataChanged()
126 maPadding = Tools::RectangleToSvBorder(Theme::GetRectangle(Theme::Rect_ToolBoxPadding)); in DataChanged()
H A DPanelTitleBar.cxx93 Theme::GetImage(Theme::Image_PanelMenu)); in SetMoreOptionsCommand()
119 ? Theme::GetImage(Theme::Image_Expand) in GetTitleArea()
120 : Theme::GetImage(Theme::Image_Collapse)); in GetTitleArea()
141 ? Theme::GetImage(Theme::Image_Collapse) in PaintDecoration()
142 : Theme::GetImage(Theme::Image_Expand)); in PaintDecoration()
155 return Theme::GetPaint(Theme::Paint_PanelTitleBarBackground); in GetBackgroundPaint()
163 return Theme::GetColor(Theme::Color_PanelTitleFont); in GetTextColor()
242 Theme::GetImage(Theme::Image_PanelMenu)); in DataChanged()
H A DTabItem.cxx45 SetBackground(Theme::GetPaint(Theme::Paint_TabBarBackground).GetWallpaper()); in TabItem()
73 Theme::GetInteger(Theme::Int_ButtonCornerRadius), in Paint()
75 ? Theme::GetColor(Theme::Color_TabItemBorder) in Paint()
78 ? Theme::GetPaint(Theme::Paint_TabItemBackgroundHighlight) in Paint()
79 : Theme::GetPaint(Theme::Paint_TabItemBackgroundNormal)); in Paint()
81 const Image aIcon (Button::GetModeImage(Theme::IsHighContrastMode() in Paint()
H A DDeckTitleBar.cxx81 Theme::GetImage(Theme::Image_Closer)); in SetCloserVisible()
97 Image aGripImage (Theme::GetImage(Theme::Image_Grip)); in GetTitleArea()
118 return Theme::GetPaint(Theme::Paint_DeckTitleBarBackground); in GetBackgroundPaint()
126 return Theme::GetColor(Theme::Color_DeckTitleFont); in GetTextColor()
157 Theme::GetImage(Theme::Image_Closer)); in DataChanged()
H A DCustomImageRadioButton.cxx57 const Theme::ThemeItem eBackground = in Paint()
59 ? Theme::Paint_TabItemBackgroundHighlight in Paint()
60 : Theme::Paint_PanelBackground; in Paint()
64 Theme::GetInteger(Theme::Int_ButtonCornerRadius), in Paint()
65 … IsChecked() || IsMouseOver() ? Theme::GetColor(Theme::Color_TabItemBorder) : Color(0xffffffff), in Paint()
66 Theme::GetPaint( eBackground ) ); in Paint()
68 const Image aIcon (GetModeRadioImage(Theme::IsHighContrastMode() in Paint()
H A DDeckLayouter.cxx208 const sal_Int32 nDeckSeparatorHeight (Theme::GetInteger(Theme::Int_DeckSeparatorHeight)); in PlacePanels()
209 const sal_Int32 nPanelTitleBarHeight (Theme::GetInteger(Theme::Int_PanelTitleBarHeight)); in PlacePanels()
302 const sal_Int32 nPanelTitleBarHeight (Theme::GetInteger(Theme::Int_PanelTitleBarHeight)); in GetRequestedSizes()
303 const sal_Int32 nDeckSeparatorHeight (Theme::GetInteger(Theme::Int_DeckSeparatorHeight)); in GetRequestedSizes()
439 const sal_Int32 nDeckTitleBarHeight (Theme::GetInteger(Theme::Int_DeckTitleBarHeight)); in PlaceDeckTitle()
509 rFiller.SetBackground(Theme::GetPaint(Theme::Paint_PanelBackground).GetWallpaper()); in UpdateFiller()
H A DMenuButton.cxx72 ? Theme::GetColor(Theme::Color_TabItemBorder) in Paint()
75 ? Theme::GetPaint(Theme::Paint_TabItemBackgroundHighlight) in Paint()
76 : Theme::GetPaint(Theme::Paint_TabItemBackgroundNormal)); in Paint()
78 const Image aIcon (Button::GetModeImage(Theme::IsHighContrastMode() in Paint()
H A DSidebarToolBox.cxx51 maItemSeparator(Theme::GetImage(Theme::Image_ToolBoxItemSeparator)), in SidebarToolBox()
88 maItemSeparator(Theme::GetImage(Theme::Image_ToolBoxItemSeparator)), in SidebarToolBox()
158 if (Theme::GetBoolean(Theme::Bool_UseToolBoxItemSeparator)) in Paint()
319 const bool bIsHighContrastActive (sfx2::sidebar::Theme::IsHighContrastMode()); in UpdateIcons()
/AOO41X/main/sd/source/ui/slidesorter/view/
H A DSlsButtonBar.cxx69 const ::boost::shared_ptr<Theme>& rpTheme,
84 ::boost::shared_ptr<Theme> mpTheme;
105 const ::boost::shared_ptr<Theme>& rpTheme,
126 const ::boost::shared_ptr<Theme>& rpTheme,
560 const sal_Int32 nGap (mrSlideSorter.GetTheme()->GetIntegerValue(Theme::Integer_ButtonGap)); in LayoutButtons()
561 … const sal_Int32 nBorder (mrSlideSorter.GetTheme()->GetIntegerValue(Theme::Integer_ButtonBorder)); in LayoutButtons()
597 if (mrSlideSorter.GetTheme()->GetIntegerValue(Theme::Integer_ButtonPaintType) == 1) in LayoutButtons()
748 ? Theme::Integer_ButtonFadeInDelay in StartFadeAnimation()
749 : Theme::Integer_ButtonFadeOutDelay))); in StartFadeAnimation()
751 ? Theme::Integer_ButtonFadeInDuration in StartFadeAnimation()
[all …]
H A DSlsPageObjectPainter.cxx103 mpPageNumberFont(Theme::GetFont(Theme::Font_PageNumber, *rSlideSorter.GetContentWindow())), in PageObjectPainter()
104 mpShadowPainter(new FramePainter(mpTheme->GetIcon(Theme::Icon_RawShadow))), in PageObjectPainter()
105 mpFocusBorderPainter(new FramePainter(mpTheme->GetIcon(Theme::Icon_FocusBorder))), in PageObjectPainter()
111 msUnhideString(mpTheme->GetString(Theme::String_Unhide)), in PageObjectPainter()
117 Color aColor (mpTheme->GetColor(Theme::Color_Selection)); in PageObjectPainter()
209 void PageObjectPainter::SetTheme (const ::boost::shared_ptr<view::Theme>& rpTheme) in SetTheme()
325 mpTheme->GetIcon(Theme::Icon_HideSlideOverlay), in GetPreviewBitmap()
350 Color aPageNumberColor (mpTheme->GetColor(Theme::Color_PageNumberDefault)); in PaintPageNumber()
357 aPageNumberColor = Color(mpTheme->GetColor(Theme::Color_PageNumberHover)); in PaintPageNumber()
361 const Color aBackgroundColor (mpTheme->GetColor(Theme::Color_Background)); in PaintPageNumber()
[all …]
H A DSlsTheme.cxx71 Theme::Theme (const ::boost::shared_ptr<controller::Properties>& rpProperties) in Theme() function in sd::slidesorter::view::Theme
124 void Theme::Update (const ::boost::shared_ptr<controller::Properties>& rpProperties) in Update()
249 ::boost::shared_ptr<Font> Theme::GetFont ( in GetFont()
300 ColorData Theme::GetColor (const ColorType eType) in GetColor()
311 void Theme::SetColor ( in SetColor()
322 ColorData Theme::GetGradientColor ( in GetGradientColor()
342 sal_Int32 Theme::GetGradientOffset ( in GetGradientOffset()
362 void Theme::SetGradient ( in SetGradient()
396 sal_Int32 Theme::GetGradientSaturationOverride (const GradientColorType eType) in GetGradientSaturationOverride()
405 sal_Int32 Theme::GetGradientBrightnessOverride (const GradientColorType eType) in GetGradientBrightnessOverride()
[all …]
H A DSlsInsertionIndicatorOverlay.cxx87 new FramePainter(mrSlideSorter.GetTheme()->GetIcon(Theme::Icon_RawInsertShadow))) in InsertionIndicatorOverlay()
137 ::boost::shared_ptr<view::Theme> pTheme (mrSlideSorter.GetTheme()); in Create()
167 aContent.SetLineColor(pTheme->GetColor(Theme::Color_PreviewBorder)); in Create()
206 …const BitmapEx aExclusionOverlay (mrSlideSorter.GetTheme()->GetIcon(Theme::Icon_HideSlideOverlay)); in PaintRepresentatives()
294 ::boost::shared_ptr<view::Theme> pTheme (mrSlideSorter.GetTheme()); in PaintPageCount()
295 ::boost::shared_ptr<Font> pFont(Theme::GetFont(Theme::Font_PageCount, rDevice)); in PaintPageCount()
317 rDevice.SetFillColor(pTheme->GetColor(Theme::Color_Selection)); in PaintPageCount()
318 rDevice.SetLineColor(pTheme->GetColor(Theme::Color_Selection)); in PaintPageCount()
322 rDevice.SetLineColor(pTheme->GetColor(Theme::Color_PageCountFontColor)); in PaintPageCount()
325 rDevice.SetTextColor(pTheme->GetColor(Theme::Color_PageCountFontColor)); in PaintPageCount()
H A DSlsLayouter.cxx75 ::boost::shared_ptr<view::Theme> mpTheme;
218 const ::boost::shared_ptr<view::Theme>& rpTheme);
245 const ::boost::shared_ptr<view::Theme>& rpTheme);
271 const ::boost::shared_ptr<view::Theme>& rpTheme);
298 const ::boost::shared_ptr<view::Theme>& rpTheme);
322 const ::boost::shared_ptr<Theme>& rpTheme) in Layouter()
569 const ::boost::shared_ptr<view::Theme>& rpTheme) in Implementation()
579 mnVerticalGap (10 - 2*rpTheme->GetIntegerValue(Theme::Integer_FocusIndicatorWidth)), in Implementation()
580 mnHorizontalGap(10 - 2*rpTheme->GetIntegerValue(Theme::Integer_FocusIndicatorWidth)), in Implementation()
1204 const ::boost::shared_ptr<view::Theme>& rpTheme) in HorizontalImplementation()
[all …]
/AOO41X/main/oox/source/drawingml/
H A Dtheme.cxx33 Theme::Theme() in Theme() function in oox::drawingml::Theme
37 Theme::~Theme() in ~Theme()
52 const FillProperties* Theme::getFillStyle( sal_Int32 nIndex ) const in getFillStyle()
59 const LineProperties* Theme::getLineStyle( sal_Int32 nIndex ) const in getLineStyle()
64 const PropertyMap* Theme::getEffectStyle( sal_Int32 nIndex ) const in getEffectStyle()
69 const TextCharacterProperties* Theme::getFontStyle( sal_Int32 nSchemeType ) const in getFontStyle()
74 const TextFont* Theme::resolveFont( const OUString& rName ) const in resolveFont()
/AOO41X/main/sdext/source/presenter/
H A DPresenterTheme.cxx123 ::boost::shared_ptr<PresenterTheme::Theme> ReadTheme (
258 class PresenterTheme::Theme class in sdext::presenter::PresenterTheme
261 Theme (
265 ~Theme (void);
273 ::boost::shared_ptr<Theme> mpParentTheme;
329 ::boost::shared_ptr<PresenterTheme::Theme> PresenterTheme::ReadTheme (void) in ReadTheme()
367 ::boost::shared_ptr<Theme> pTheme (mpTheme); in GetStyleName()
486 ::boost::shared_ptr<Theme> pTheme (mpTheme); in GetBitmap()
528 ::boost::shared_ptr<Theme> pTheme (mpTheme); in GetBitmap()
573 ::boost::shared_ptr<Theme> pTheme (mpTheme); in GetFont()
[all …]
/AOO41X/main/svx/source/sidebar/text/
H A DTextCharacterSpacingControl.cxx91 sfx2::sidebar::Theme::GetColor( sfx2::sidebar::Theme::Paint_PanelBackground )); in initial()
94 sfx2::sidebar::Theme::GetColor( sfx2::sidebar::Theme::Paint_PanelBackground )); in initial()
97 sfx2::sidebar::Theme::GetColor( sfx2::sidebar::Theme::Paint_PanelBackground )); in initial()
100 sfx2::sidebar::Theme::GetColor( sfx2::sidebar::Theme::Paint_PanelBackground )); in initial()
103 sfx2::sidebar::Theme::GetColor( sfx2::sidebar::Theme::Paint_PanelBackground )); in initial()
/AOO41X/main/svx/source/sidebar/tools/
H A DPopupControl.cxx26 using ::sfx2::sidebar::Theme;
38 SetBackground(Theme::GetWallpaper(Theme::Paint_DropDownBackground)); in PopupControl()
58 SetLineColor(Theme::GetColor(Theme::Color_DropDownBorder)); in Paint()
/AOO41X/main/sd/source/ui/slidesorter/inc/view/
H A DSlsPageObjectPainter.hxx61 void SetTheme (const ::boost::shared_ptr<view::Theme>& rpTheme);
83 ::boost::shared_ptr<view::Theme> mpTheme;
112 const Theme::GradientColorType eColorType,
119 Theme::GradientColorType eType,
124 const Theme::GradientColorType eType,
/AOO41X/main/sc/source/ui/sidebar/
H A DNumberFormatPropertyPanel.cxx45 using ::sfx2::sidebar::Theme;
115 GetImage(mxFrame, A2S(".uno:NumericField"), sal_False, Theme::IsHighContrastMode())); in Initialize()
118 GetImage(mxFrame, A2S(".uno:NumberFormatPercent"), sal_False, Theme::IsHighContrastMode())); in Initialize()
121 … GetImage(mxFrame, A2S(".uno:NumberFormatCurrency"), sal_False, Theme::IsHighContrastMode())); in Initialize()
124 GetImage(mxFrame, A2S(".uno:NumberFormatDate"), sal_False, Theme::IsHighContrastMode())); in Initialize()
127 GetImage(mxFrame, A2S(".uno:InsertFixedText"), sal_False, Theme::IsHighContrastMode())); in Initialize()
/AOO41X/main/sd/source/ui/sidebar/
H A DLayoutMenu.cxx156 SetBackground(sfx2::sidebar::Theme::GetWallpaper(sfx2::sidebar::Theme::Paint_PanelBackground)); in LayoutMenu()
157 SetColor(sfx2::sidebar::Theme::GetColor(sfx2::sidebar::Theme::Paint_PanelBackground)); in LayoutMenu()
910 SetBackground(sfx2::sidebar::Theme::GetWallpaper(sfx2::sidebar::Theme::Paint_PanelBackground)); in DataChanged()
911 SetColor(sfx2::sidebar::Theme::GetColor(sfx2::sidebar::Theme::Paint_PanelBackground)); in DataChanged()
/AOO41X/main/svx/source/sidebar/possize/
H A DSidebarDialControlBmp.cxx64 if ( ! sfx2::sidebar::Theme::IsHighContrastMode()) in DrawElements()
77 SetFillColor(sfx2::sidebar::Theme::GetColor(sfx2::sidebar::Theme::Paint_PanelBackground)); in DrawBackground()
81 sfx2::sidebar::Theme::IsHighContrastMode() in DrawBackground()
/AOO41X/main/sfx2/inc/sfx2/sidebar/
H A DTheme.hxx64 class SFX2_DLLPUBLIC Theme class
161 Theme (void);
162 virtual ~Theme (void);
215 static ::rtl::Reference<Theme> mpInstance;
216 static Theme& GetCurrentTheme (void);

123456