⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gtkrc

📁 《Linux程序设计权威指南》源代码
💻
字号:
# pixmap_path "<dir 1>:<dir 2>:<dir 3>:..."## include "rc-file"## style <name> [= <name>]# {#   <option># }## widget <widget_set> style <style_name># widget_class <widget_class_set> style <style_name># testgtkrc2 sets all the buttons in the main window to blue by default#include "testgtkrc2"module_path "."pixmap_path ".:/home/raster/themes"style "default"{  font = "-*-helvetica-medium-r-normal--10-*-*-*-*-*-*-*"  bg[NORMAL] = "#c0c0c0"  bg[PRELIGHT] = "#c0c0c0"  engine "redmond95"   {  }}style "menu"{  bg[PRELIGHT] = { 0.0, 0.0, 0.6 }  fg[PRELIGHT] = { 1.0, 1.0, 1.0 }}style "list"{   bg[NORMAL] = { 0.9, 0.9, 0.9 }   bg[PRELIGHT] = { 0.9, 0.9, 0.9 }}widget_class "*MenuItem*" style "menu"widget_class "*Menu*" style "menu"widget_class "GtkCTree" style "list"widget_class "GtkCList" style "list"style "window"{#  bg_pixmap[NORMAL] = "warning.xpm"}style "scale"{#  fg[NORMAL] = { 1.0, 0, 0 }#  bg[PRELIGHT] = { 1.0, 1.0, 0 }#  bg_pixmap[NORMAL] = "<parent>"}style "button"{#  fg[PRELIGHT] = { 1.0, 1.0, 1.0 }#  bg[PRELIGHT] = { 0, 0, 0.75 }#  bg[PRELIGHT] = { 0.75, 0, 0x00 }}style "toggle_button" = "button"{#  fg[NORMAL] = { 1.0, 0, 0 }#  fg[ACTIVE] = { 1.0, 0, 0 }#  bg_pixmap[NORMAL] = "<parent>"}style "text"{#  bg_pixmap[NORMAL] = "marble.xpm"#  text[NORMAL] = { 0.2, 0.2, 1.0 }#  fg[NORMAL] = { 1.0, 1.0, 1.0 }#  base[NORMAL] = { 0.0, 0.0, 0.0 }}style "slider"{#  fg[NORMAL] = { 1.0, 1.0, 1.0 }#  bg[NORMAL] = { 0.0, 0.0, 1.0 }#  bg[ACTIVE] = { 0.0 ,0.0, 0.5 }#  bg[PRELIGHT] = { 0.75 ,0.75, 1.0 }}style "ruler"{#  font = '-adobe-helvetica-medium-r-normal--*-80-*-*-*-*-*-*'}style "curve"{#  fg[NORMAL] = { 58000, 0, 0 }			# red}style "red-bar"{#  bg[PRELIGHT] = { 0.95, .55, 0.55 }}# override testgtk2, introduce the green color in the button liststyle 'button_list' = 'button'{#  font = "-adobe-helvetica-medium-r-normal--*-100-*-*-*-*-*-*"#  bg[PRELIGHT] = { 0, 0.75, 0x00 }}widget "main window.*GtkScrolledWindow.*GtkButton*" style "button_list"# common defaultclass "GtkWidget" style "default"class "GtkScrollbar" style "red-bar"widget_class "GtkWindow" style "window"widget_class "GtkDialog" style "window"widget_class "GtkFileSelection" style "window"widget_class "*Gtk*Scale" style "scale"widget_class "*GtkCheckButton*" style "toggle_button"widget_class "*GtkRadioButton*" style "toggle_button"widget_class "*GtkButton*" style "button"widget_class "*Ruler" style "ruler"widget_class "*GtkText" style "text"widget "*GtkCurve" style "curve"binding "test1"{  bind "<ctrl>1" {    "debug-msg" ("hallo and")     "debug-msg" ("huhu")  }}binding "test2"{  bind "<ctrl>1" {    "debug-msg" ("jup!")   }}# possible priorities are (in ascending order):# lowest# gtk         (used by gtk for internal class bindings)# application (for hard coded bindings on application basis)# rc          (used implicitel by rc files)# highestclass "GtkButton" binding "test1"           # implicit : rcclass "GtkButton" binding : highest "test2" # override "rc" prioritybinding "clist-test"{  bind "j" {    "scroll-vertical" (step-backward, 0.0)  }  bind "k" {    "scroll-vertical" (step-forward, 0.0)  }}class "GtkCList" binding "clist-test"

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -