在ubuntu下eclipse工具栏之间的间距十分大,通过以下方法即可设置工具栏
vi ~/.gtkrc-2.0
style "gtkcompact" {
font_name="文泉驿微米黑 11"
GtkButton::default_border={0,0,0,0}
GtkButton::default_outside_border={0,0,0,0}
GtkButtonBox::child_min_width=0
GtkButtonBox::child_min_heigth=0
GtkButtonBox::child_internal_pad_x=0
GtkButtonBox::child_internal_pad_y=0
GtkMenu::vertical-padding=1
GtkMenuBar::internal_padding=0
GtkMenuItem::horizontal_padding=4
GtkToolbar::internal-padding=0
GtkToolbar::space-size=0
GtkOptionMenu::indicator_size=0
GtkOptionMenu::indicator_spacing=0
GtkPaned::handle_size=4
GtkRange::trough_border=0
GtkRange::stepper_spacing=0
GtkScale::value_spacing=0
GtkScrolledWindow::scrollbar_spacing=0
GtkExpander::expander_size=10
GtkExpander::expander_spacing=0
GtkTreeView::vertical-separator=0
GtkTreeView::horizontal-separator=0
GtkTreeView::expander-size=8
GtkTreeView::fixed-height-mode=TRUE
GtkWidget::focus_padding=0
}
class "GtkWidget" style "gtkcompact"
style "gtkcompactextra" {
xthickness=0
ythickness=0
}
class "GtkButton" style "gtkcompactextra"
class "GtkToolbar" style "gtkcompactextra"
class "GtkPaned" style "gtkcompactextra"
eclipse提示框的背景颜色使用的是系统的提示框颜色配置,在windows下为黄色,但在Ubuntu12.04(gnome)下却 是黑色,造成提示内容很难看清。在eclipse中我们是无法修改这个颜色的配置的,只能通过修改系统的颜色配置。这个文件 位于/usr/share/themes/下对应的主题文件夹下,如你使用Radiance主题(查看主题方法【系统设置】-【外观】右下角会显示当前使用的主题),就进入到/usr/share/themes /Radiance/目录下,
cd /usr/share/themes/Radiance
打开gtk-2.0/gtkrc文件,
sudo vim gtk-2.0/gtkrc
修改第一行的tooltip_fg_color和tooltip_bg_color两个属性的值,如果没有改属性,可以自行添加,其值仿照windows的默认值,分别设定位:
tooltip_fg_color:#000000
tooltip_bg_color:#f2edbc
base[ACTIVE] = shade (1.05, @selected_bg_color) #我的在93行
base[ACTIVE]这个是选中但未获得焦点的背景,括号的数字为1时,和@selected_bg_color同色,数字越小颜色越深,数字越大颜色越浅 (具体配置见附件,可以直接替换)
然后保存退出,打开系统外观配置,切换一下主题,当切换回来的时候,修改的效果就生效了
其中gtk-2.0/gtkrc文件中颜色的定义为
fg_color The base for the foreground colors.
bg_color Color to generate the background colors from.
base_color The base color.
text_color The text color in input widgets.
selected_bg_color Color for the background of selected text.
selected_fg_color Color of selected text.
tooltip_bg_color Background color of tooltips.
tooltip_fg_color Text color for text in tooltips.
隐藏工具栏中的不相关的元素
【windows】--【customize perspective】
下面是已经配置好的文件
下载地址:http://download.csdn.net/detail/taanng/9340623