Searched refs:theme (Results 1 - 25 of 162) sorted by relevance

1234567

/macosx-10.9.5/WebCore-7537.78.1/platform/qt/
H A DScrollbarThemeQt.cpp37 static ScrollbarTheme* theme = 0; local
38 if (theme)
39 return theme;
40 theme = RenderThemeQt::customScrollbarTheme();
41 if (!theme)
42 theme = new ScrollbarTheme();
43 return theme;
/macosx-10.9.5/llvmCore-3425.0.33/docs/_themes/llvm-theme/
H A Dtheme.conf0 [theme]
3 stylesheet = llvm-theme.css
/macosx-10.9.5/WebCore-7537.78.1/platform/blackberry/
H A DScrollbarThemeBlackBerry.cpp29 DEFINE_STATIC_LOCAL(ScrollbarTheme, theme, ());
30 return &theme;
/macosx-10.9.5/WebCore-7537.78.1/platform/efl/
H A DScrollbarThemeEfl.cpp36 static ScrollbarThemeEfl theme; local
37 return &theme;
/macosx-10.9.5/zsh-60/zsh/Functions/Misc/
H A Dsticky-note31 # The "theme" style may be set to control the appearance of the notes.
36 # color => ANSI escape for color scheme ($theme[bg]$theme[fg])
41 # zstyle :sticky-note theme \
77 # Look up color theme
78 local -A theme
80 zstyle -m :sticky-note theme '*' || {
81 zstyle :sticky-note theme bg yellow fg black
83 zstyle -a :sticky-note theme theme
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DScrollbarTheme.cpp34 ScrollbarTheme* ScrollbarTheme::theme() function in class:WebCore::ScrollbarTheme
H A DScrollbar.cpp60 static int maxOverlapBetweenPages = ScrollbarTheme::theme()->maxOverlapBetweenPages();
65 ScrollbarTheme* theme)
69 , m_theme(theme)
90 m_theme = ScrollbarTheme::theme();
140 int oldThumbPosition = theme()->thumbPosition(this);
144 setPressedPos(m_pressedPos + theme()->thumbPosition(this) - oldThumbPosition);
170 theme()->invalidateParts(this, ForwardTrackPart | BackTrackPart | ThumbPart);
186 if (context->updatingControlTints() && theme()->supportsControlTints()) {
194 if (!theme()->paint(this, context, damageRect))
200 autoscrollPressedPart(theme()
64 Scrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize controlSize, ScrollbarTheme* theme) argument
[all...]
/macosx-10.9.5/tcl-102/tk/tk/library/ttk/
H A Dttk.tcl58 # Called from [::ttk::style theme use].
81 foreach pkg [lsearch -inline -all -glob [package names] ttk::theme::$ptn] {
88 ## ttk::setTheme $theme --
89 # Set the current theme to $theme, loading it if necessary.
91 proc ::ttk::setTheme {theme} {
92 variable currentTheme ;# @@@ Temp -- [::ttk::style theme use] doesn't work
93 if {$theme ni [::ttk::style theme names]} {
94 package require ttk::theme
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/C/efl/
H A DWKViewEfl.cpp47 void WKViewSetThemePath(WKViewRef viewRef, WKStringRef theme) argument
49 static_cast<WebViewEfl*>(toImpl(viewRef))->setThemePath(toImpl(theme)->string());
/macosx-10.9.5/tcl-102/tk/tk/library/demos/
H A Dttkmenu.tcl22 ttk::label $w.msg -font $font -wraplength 4i -justify left -text "Ttk is the new Tk themed widget set, and one widget that is available in themed form is the menubutton. Below are some themed menu buttons that allow you to pick the current theme in use. Notice how picking a theme changes the way that the menu buttons themselves look, and that the central menu button is styled differently (in a way that is normally suitable for toolbars). However, there are no themed menus; the standard Tk menus were judged to have a sufficiently good look-and-feel on all platforms, especially as they are implemented as native controls in many places."
28 ttk::menubutton $w.m1 -menu $w.m1.menu -text "Select a theme" -direction above
29 ttk::menubutton $w.m2 -menu $w.m1.menu -text "Select a theme" -direction left
30 ttk::menubutton $w.m3 -menu $w.m1.menu -text "Select a theme" -direction right
31 ttk::menubutton $w.m4 -menu $w.m1.menu -text "Select a theme" \
33 ttk::menubutton $w.m5 -menu $w.m1.menu -text "Select a theme" -direction below
41 foreach theme [ttk::themes] {
42 $w.m1.menu add command -label $theme -command [list ttk::setTheme $theme]
[all...]
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderScrollbarTheme.h41 virtual int scrollbarThickness(ScrollbarControlSize controlSize) { return ScrollbarTheme::theme()->scrollbarThickness(controlSize); }
43 virtual ScrollbarButtonsPlacement buttonsPlacement() const { return ScrollbarTheme::theme()->buttonsPlacement(); }
49 virtual bool shouldCenterOnThumb(ScrollbarThemeClient* scrollbar, const PlatformMouseEvent& event) { return ScrollbarTheme::theme()->shouldCenterOnThumb(scrollbar, event); }
51 virtual double initialAutoscrollTimerDelay() { return ScrollbarTheme::theme()->initialAutoscrollTimerDelay(); }
52 virtual double autoscrollTimerDelay() { return ScrollbarTheme::theme()->autoscrollTimerDelay(); }
54 virtual void registerScrollbar(ScrollbarThemeClient* scrollbar) { return ScrollbarTheme::theme()->registerScrollbar(scrollbar); }
55 virtual void unregisterScrollbar(ScrollbarThemeClient* scrollbar) { return ScrollbarTheme::theme()->unregisterScrollbar(scrollbar); }
/macosx-10.9.5/tcl-102/tk/tk/generic/ttk/
H A DttkSeparator.c42 Tcl_Interp *interp, Ttk_Theme theme, void *recordPtr)
46 interp, theme, recordPtr, sep->separator.orientObj);
123 Ttk_Theme theme = Ttk_GetDefaultTheme(interp); local
125 Ttk_RegisterLayout(theme, "TSeparator", SeparatorLayout);
126 Ttk_RegisterLayout(theme, "TSizegrip", SizegripLayout);
41 SeparatorGetLayout( Tcl_Interp *interp, Ttk_Theme theme, void *recordPtr) argument
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/tcllib/
H A Dtablelist_tile.rb24 def self.set_theme(theme)
25 Tk.tk_call('::tablelist::setTheme', theme)
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/demos-jp/
H A Dttkmenu.rb76 Ttk.themes.each{|theme|
77 m1.add(:command, :label=>theme, :command=>proc{Ttk.set_theme theme})
78 m2.add(:command, :label=>theme, :command=>proc{Ttk.set_theme theme})
79 m3.add(:command, :label=>theme, :command=>proc{Ttk.set_theme theme})
80 m4.add(:command, :label=>theme, :command=>proc{Ttk.set_theme theme})
81 m5.add(:command, :label=>theme,
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dcustom.el710 (custom-push-theme 'theme-value symbol 'user 'set
732 ;; Each Custom theme is defined by a symbol, called the theme name.
733 ;; The `theme-settings' property of the theme name records the
734 ;; variable and face settings of the theme. This property is a list
739 ;; - PROP is either `theme-value' or `theme-face'
741 ;; - THEME is the theme nam
[all...]
H A Dcus-theme.el1 ;;; cus-theme.el -- custom theme creation user interface
35 (defvar custom-new-theme-mode-map
42 "Keymap for `custom-new-theme-mode'.")
44 (define-derived-mode custom-new-theme-mode nil "New-Theme"
45 "Major mode for the buffer created by `customize-create-theme'.
47 use by `customize-create-theme'."
48 (use-local-map custom-new-theme-mode-map)
49 (define-key custom-new-theme-mode-map [mouse-1] 'widget-move-and-invoke)
59 (put 'custom-new-theme
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/demos-en/
H A Dttkmenu.rb26 that allow you to pick the current theme in use. \
27 Notice how picking a theme changes the way \
57 b1 = Ttk::Menubutton.new(base_frame,:text=>'Select a theme',:direction=>:above)
58 b2 = Ttk::Menubutton.new(base_frame,:text=>'Select a theme',:direction=>:left)
59 b3 = Ttk::Menubutton.new(base_frame,:text=>'Select a theme',:direction=>:right)
60 b4 = Ttk::Menubutton.new(base_frame,:text=>'Select a theme',:direction=>:flush,
62 b5 = Ttk::Menubutton.new(base_frame,:text=>'Select a theme',:direction=>:below)
70 Ttk.themes.each{|theme|
71 m1.add(:command, :label=>theme, :command=>proc{Ttk.set_theme theme})
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/tests/UnitTestUtils/
H A DEWK2UnitTestEnvironment.cpp63 CString EWK2UnitTestEnvironment::pathForTheme(const char* theme) argument
67 builder.append(theme);
H A DEWK2UnitTestEnvironment.h36 CString pathForTheme(const char* theme);
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/tile/
H A Dstyle.rb132 set themes [::ttk::style theme names]
133 foreach pkg [lsearch -inline -all -glob [package names] ttk::theme::$ptn] {
134 set theme [namespace tail $pkg]
135 if {[lsearch -exact $themes $theme] < 0} {
136 lappend themes $theme
139 foreach pkg [lsearch -inline -all -glob [package names] tile::theme::$ptn] {
140 set theme [namespace tail $pkg]
141 if {[lsearch -exact $themes $theme] < 0} {
142 lappend themes $theme
148 TkCore::INTERP.add_tk_procs('::ttk::setTheme', 'theme', <<
[all...]
/macosx-10.9.5/zsh-60/zsh/Functions/Prompts/
H A Dpromptinit17 local ppath='' name theme
21 for theme in $^fpath/prompt_*_setup(N); do
22 if [[ $theme == */prompt_(#b)(*)_setup ]]; then
24 if [[ -r "$theme" ]]; then
28 print "Couldn't read file $theme containing theme $name."
46 print "Unknown theme: $1"
55 # runs the prompt theme setup function to ensure that if
56 # the theme has a _preview function that it's been autoloaded.
68 local opt preview theme usag
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/
H A Dttk_wrapper.rb20 OPTS[:theme] = 'default'
22 opt.on('-l', '--list', 'list available theme names'){|v| OPTS[:list] = true}
23 opt.on('-t', '--theme theme', 'theme name'){|v| OPTS[:theme] = v}
24 opt.on('-d', '--themedir themes_dir', 'directory of theme definitions'){|v|
27 opt.on('-r', '--rubytheme rb_theme', 'theme definition file (ruby script)'){|v|
73 print "theme-dirs: #{OPTS[:themedir].inspect}\n" if OPTS[:verbose]
111 # set theme o
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/tkextlib/tile/
H A Dtoolbutton.tcl29 # Since the appearance is completely controlled by the theme engine,
45 style theme settings "step" {
64 # is defined in the default theme; we could have inherited it
90 # Now for the "blue" theme. (Since the purpose of this
91 # theme is to show what *can* be done, not necessarily what
95 if {![catch {package require tile::theme::blue}]} {
96 style theme settings "blue" {
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.69/examples/
H A Dterraserver.pl20 my $response = $terra->GetTheme(SOAP::Data->name(theme => 'Photo'));
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.715/examples/
H A Dterraserver.pl20 my $response = $terra->GetTheme(SOAP::Data->name(theme => 'Photo'));

Completed in 286 milliseconds

1234567