Searched refs:Style (Results 1 - 25 of 63) sorted by relevance

123

/haiku/src/apps/icon-o-matic/style/
H A DMoveStylesCommand.h18 class Style;
24 class MoveStylesCommand : public MoveCommand<Style> {
27 Container<Style>* container,
28 Style** styles,
H A DAddStylesCommand.h18 class Style;
24 class AddStylesCommand : public AddCommand<Style> {
27 Container<Style>* container,
28 const Style* const* styles,
H A DRemoveStylesCommand.h20 class Style;
26 class RemoveStylesCommand : public RemoveCommand<Style> {
29 Container<Style>* container,
H A DAddStylesCommand.cpp16 #include "Style.h"
22 AddStylesCommand::AddStylesCommand(Container<Style>* container,
23 const Style* const* styles, int32 count, int32 index)
24 : AddCommand<Style>(container, styles, count, true, index)
H A DMoveStylesCommand.cpp16 #include "Style.h"
23 MoveStylesCommand::MoveStylesCommand(Container<Style>* container,
24 Style** styles, int32 count, int32 toIndex)
25 : MoveCommand<Style>(container, styles, count, toIndex)
H A DAssignStyleCommand.h20 class Style;
29 Style* style);
41 Style* fOldStyle;
42 Style* fNewStyle;
H A DSetColorCommand.h19 class Style;
27 SetColorCommand(Style* style,
41 Style* fStyle;
H A DSetGradientCommand.h18 class Style;
26 SetGradientCommand(Style* style,
40 Style* fStyle;
H A DAssignStyleCommand.cpp16 #include "Style.h"
25 Style* style)
28 fOldStyle(shape ? shape->Style() : NULL),
H A DRemoveStylesCommand.cpp19 #include "Style.h"
29 RemoveStylesCommand::RemoveStylesCommand(Container<Style>* container,
31 : RemoveCommand<Style>(container, indices, count),
69 status_t ret = RemoveCommand<Style>::Perform();
95 status_t ret = RemoveCommand<Style>::Undo();
/haiku/src/libs/icon/style/
H A DStyle.h39 class Style : public IconObject, class in inherits:IconObject,Observer
42 class Style {
45 Style();
46 Style(const Style& other);
47 Style(const rgb_color& color);
49 Style(BBitmap* image);
52 Style(BMessage* archive);
54 virtual ~Style();
60 // Style
[all...]
H A DStyle.cpp10 #include "Style.h"
28 Style::Style() function in class:Style
50 Style::Style(const rgb_color& color) function in class:Style
73 Style::Style(BBitmap* image) function in class:Style
89 Style::Style(const Style function in class:Style
112 Style::Style(BMessage* archive) function in class:Style
[all...]
/haiku/src/libs/icon/shape/
H A DReferenceImage.cpp22 #include "Style.h"
28 : Shape(new (nothrow) _ICON_NAMESPACE Style()),
31 if (Style() == NULL)
33 Style()->ReleaseReference();
39 double width = (int) Style()->Bitmap()->Bounds().Width() + 1;
40 double height = (int) Style()->Bitmap()->Bounds().Height() + 1;
53 : Shape(new (nothrow) _ICON_NAMESPACE Style()),
56 if (Style() == NULL)
58 Style()->ReleaseReference();
61 BBitmap* bitmap = new (nothrow) BBitmap(other.Style()
[all...]
H A DPathSourceShape.h25 class Style;
34 PathSourceShape(_ICON_NAMESPACE Style* style);
56 void SetStyle(_ICON_NAMESPACE Style* style)
58 inline _ICON_NAMESPACE Style* Style() const function in class:PathSourceShape
59 { return Shape::Style(); }
H A DShape.h31 class Style;
43 virtual void StyleChanged(Style* oldStyle,
44 Style* newStyle) = 0;
61 Shape(_ICON_NAMESPACE Style* style);
112 inline _ICON_NAMESPACE Style* Style() const function in class:Shape
133 void _NotifyStyleChanged(_ICON_NAMESPACE Style* oldStyle,
134 _ICON_NAMESPACE Style* newStyle) const;
140 void SetStyle(_ICON_NAMESPACE Style* style);
144 _ICON_NAMESPACE Style* fStyl
[all...]
/haiku/src/apps/icon-o-matic/
H A DUtil.h23 class Style;
31 void new_style(rgb_color color, Container<Style>* container,
32 Style** style, AddStylesCommand** command);
H A DUtil.cpp16 #include "Style.h"
23 new_style(rgb_color color, Container<Style>* container,
24 Style** style, AddStylesCommand** command)
26 *style = new (nothrow) Style(color);
28 Style* styles[1];
/haiku/src/apps/icon-o-matic/gui/
H A DStyleListView.h28 class Style;
34 class StyleListView : public SimpleListView, public ContainerListener<Style> {
63 // ContainerListener<Style> interface
64 virtual void ItemAdded(Style* style, int32 index);
65 virtual void ItemRemoved(Style* style);
69 void SetStyleContainer(Container<Style>* container);
79 bool _AddStyle(Style* style, int32 index);
80 bool _RemoveStyle(Style* style);
82 StyleListItem* _ItemForStyle(Style* style) const;
86 void _SetStyleMarked(Style* styl
[all...]
H A DStyleView.h27 class Style;
55 void SetStyle(Style* style);
73 Style* fStyle;
/haiku/src/libs/icon/message/
H A DMessageImporter.h32 class Style;
52 Container<Style>* styles) const;
55 Container<Style>* styles,
/haiku/src/apps/icon-o-matic/import_export/message/
H A DMessageExporter.h21 class Style;
40 status_t _Export(const Style* style,
44 const Container<Style>* globalStyles,
/haiku/src/libs/icon/flat_icon/
H A DFlatIconImporter.h33 class Style;
57 Container<Style>* styles);
62 Container<Style>* styles,
65 Container<Style>* styles,
/haiku/src/libs/icon/
H A DIcon.h31 class Style;
59 const Container<Style>* Styles() const
61 Container<Style>* Styles()
77 Container<Style> fStyles;
/haiku/src/apps/icon-o-matic/import_export/svg/
H A DSVGExporter.h20 class Style;
51 status_t _GetFill(const Style* style,
/haiku/src/apps/icon-o-matic/import_export/styled_text/
H A DStyledTextImporter.h22 class Style;
27 Style *style;

Completed in 114 milliseconds

123