
最近在看 CSS 對於 GTK 3 程式的支援,並且寫了一些小程式玩了一下,覺得相當愉悅。
在 GTK 2 以前,要修改 widget 外觀要可以透過 gtkrc,但對於 GTK 3 可以直接給 CSS 相較之下,修改 CSS 簡單多了。此外 CSS 又提供像是背景的 gradient, transition, border-radius, border-image 這類的特性,要做到一些簡單的特效也變得十分容易。詳細的特效可參考 GtkCssProvider。
想直接玩一下 CSS 的花樣可直接在 Ubuntu 13.04 下安裝 gtk-3-examples,並執行 gtk3-demo
$ sudo apt-get install gtk-3-examples $ gtk3-demo
其中 css theming 的部分就可看到 CSS 帶來的特殊處。如同下面影片:
Hello World
接下來就來寫個簡單的 GKT 3 and CSS 的“你好世界”吧!在 Ubuntu 13.04 的環境下需安裝:
$ sudo apt-get install gir1.2-gtk-3.0
程式如下,執行畫面類似 demo 裡的 CSS accordion。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
from gi.repository import Gtk, Gdk | |
import sys | |
class MyWindow(Gtk.Window): | |
def __init__(self): | |
Gtk.Window.__init__(self, title="Hello World") | |
self.set_name('MyWindow') | |
self.set_default_size(600, 300) | |
self.box = Gtk.HBox() | |
self.box.set_halign(Gtk.Align.CENTER) | |
self.box.set_valign(Gtk.Align.CENTER) | |
self.add(self.box) | |
self.button1 = Gtk.Button(label="Hello") | |
self.button1.connect("clicked", self.on_button1_clicked) | |
self.box.pack_start(self.button1, True, True, 0) | |
self.button2 = Gtk.Button(label="Goodbye") | |
self.button2.connect("clicked", self.on_button2_clicked) | |
self.box.pack_start(self.button2, True, True, 0) | |
def on_button1_clicked(self, widget): | |
print("Hello") | |
def on_button2_clicked(self, widget): | |
print("Goodbye") | |
def main(argv): | |
def gtk_style(): | |
css = b""" | |
* { | |
transition-property: color, background-color, border-color, background-image, padding, border-width; | |
transition-duration: 1s; | |
font: Cantarell 20px; | |
} | |
GtkWindow { | |
background: linear-gradient(153deg, #151515, #151515 5px, transparent 5px) 0 0, | |
linear-gradient(333deg, #151515, #151515 5px, transparent 5px) 10px 5px, | |
linear-gradient(153deg, #222, #222 5px, transparent 5px) 0 5px, | |
linear-gradient(333deg, #222, #222 5px, transparent 5px) 10px 10px, | |
linear-gradient(90deg, #1b1b1b, #1b1b1b 10px, transparent 10px), | |
linear-gradient(#1d1d1d, #1d1d1d 25%, #1a1a1a 25%, #1a1a1a 50%, transparent 50%, transparent 75%, #242424 75%, #242424); | |
background-color: #131313; | |
background-size: 20px 20px; | |
} | |
.button { | |
color: black; | |
background-color: #bbb; | |
border-style: solid; | |
border-width: 2px 0 2px 2px; | |
border-color: #333; | |
padding: 12px 4px; | |
} | |
.button:first-child { | |
border-radius: 5px 0 0 5px; | |
} | |
.button:last-child { | |
border-radius: 0 5px 5px 0; | |
border-width: 2px; | |
} | |
.button:hover { | |
padding: 12px 48px; | |
background-color: #4870bc; | |
} | |
.button *:hover { | |
color: white; | |
} | |
.button:hover:active, | |
.button:active { | |
background-color: #993401; | |
} | |
""" | |
style_provider = Gtk.CssProvider() | |
style_provider.load_from_data(css) | |
Gtk.StyleContext.add_provider_for_screen( | |
Gdk.Screen.get_default(), | |
style_provider, | |
Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION | |
) | |
gtk_style() | |
win = MyWindow() | |
win.connect("delete-event", Gtk.main_quit) | |
win.show_all() | |
Gtk.main() | |
if __name__ == "__main__": | |
main(sys.argv) |
Document
若是第一次使用 GTK 3 的朋友們可以先從這份 GTK 3 tutorial 開始看起。若是已經熟悉 GTK 開發的朋友,可接接產生 API reference 來看,產生方式如下:
$ sudo apt-get install yelp yelp-tools libgirepository1.0-dev libgtk-3-dev $ g-ir-doc-tool --language Python -o ./output_dir /usr/share/gir-1.0/Gtk-3.0.gir $ yelp ./output_dir/index.page
執行畫面如下:

1 comment:
html language code examples
Moz proprietary opacity property
Post a Comment