ラベルの立体化を消す
style "cruxtext" = "default"
{
engine "mist"
{
}
}
class "*Label*" style "cruxtext"
widget_class "*Label*" style "cruxtext"
widget_class "*Cell*" style "cruxtext"
widget_class "*.GtkTreeView" style "cruxtext"
- label -- bounboun 2009-04-17 (金)
ハンドルをサイドバーの物と使い分ける
style "handlebox"
{
xthickness = 0
ythickness = 0
engine "pixmap"
{
image
{
function = HANDLE
recolorable = TRUE
overlay_file = "ファイル1縦"
overlay_stretch = FALSE
orientation = VERTICAL
}
image
{
function = HANDLE
overlay_file = "ファイル1横"
overlay_stretch = FALSE
orientation = HORIZONTAL
}
}
}
class "GtkPaned" style "handlebox"
style "handlebox2"
{
xthickness = 0
ythickness = 0
engine "pixmap"
{
image
{
function = HANDLE
recolorable = TRUE
overlay_file = "ファイル2縦"#サイドバーの仕切りなど
overlay_stretch = FALSE
orientation = VERTICAL
}
image
{
function = HANDLE
overlay_file = "ファイル2横"#サイドバーの仕切りなど
overlay_stretch = FALSE
orientation = HORIZONTAL
}
}
}
class "GtkHandleBox" style "handlebox2"
widget_class "*HandleBox" style "handlebox2"
- HandleBox -- bounboun 2009-04-17 (金)
タブの重なりを調整する
style "default"にGtkNotebook::tab-overlap = 数字 を突っ込む
- tab -- bounboun 2009-04-17 (金)