web-dev-qa-db-ja.com

Eclipseでパッケージエクスプローラーのフォントサイズを変更できない

Eclipseのパッケージエクスプローラーのフォントサイズをメニューから変更しようとしていますWindowPreferencesGeneralAppearance、フォントサイズを変更できません。どうやってやるの?私はWindows 7でEclipse v4.2(Juno)を使用しています。

EclipseはネイティブWindowsウィジェットを使用しており、それらの設定は[表示プロパティ]/[設定]/[詳細]/[一般プロパティ]タブからのみ変更できます。そこで、画面のDPIを変更してフォントサイズを変更できます。

0
Eugene Kuleshov

Juno以降では、CSSを使用してそのフォントを調整できます。

現在のスタイルシート(おそらくEclipse\plugins\org.Eclipse.platform_4.2.x.y\css)をe4_default_win7.cssで検索し、次のルールを追加します。

#org-Eclipse-jdt-ui-PackageExplorer Tree,
#org-Eclipse-ui-navigator-ProjectExplorer Tree {
  font-size: 10px; /* <-- Desired font size */
}

pdate: Eclipse 4.4(Luna)以降、スタイルシートはEclipse/plugins/org.Eclipse.ui.themes_x.x.x.vxxxxx/cssフォルダーにあります。

29
Diego V

ご参考までに:

Eclipse v4.4(Luna)から:

CSSファイルが古いフォルダーに存在しないようです:

`Eclipse/plugins/org.Eclipse.platform_4.x.x.vy/css`,

それらは新しいフォルダに移動さ​​れます。

Eclipse/plugins/org.Eclipse.ui.themes_x.x.x.vxxxxx/css

また、メニューWindowsPreferenceGeneralAppearanceで、テーマを選択して適用する必要があります。

20
Li Ying

これは私のために働きました:

.MPart Tree{
  font-size: 8;
}
17
Paul Bormans

これらは私の設定とIDEのスクリーンショットです。

    #org-Eclipse-jdt-ui-PackageExplorer Tree,
    #org-Eclipse-ui-navigator-ProjectExplorer Tree,
    #org-Eclipse-ui-views-ContentOutline Tree,
    #PerspectiveSwitcher ToolBar {
      font-size: 8px;
    }

    .MPartStack {
      font-size: 8;
      swt-simple: false;
      swt-mru-visible: false;
    }

Eclipse screenshot

7
FuePi

CSSスタイルファイルをEclipse/plugins/org.Eclipse.platform_4.2.X.vY/cssで検索して、現在のスタイルを編集できます(おそらくe4_default_win7.css)。

次のようなものを追加します。

    #org-Eclipse-ui-jdt-PackageExplorer {
       font-size: 20pt;
    }

そして、あなたが素敵で大きなフォントを持っていることを願っています(私は自分でチェックしませんでした)。

プロのヒント:次にUIの一部のCSS IDを見つける必要があるときは、CSS Spyを使用します。これは、 SHIFT-ALT-F5 (インストール後)。

5
Veger

buntu 14.04 (Trusty Tahr)これは私にとって最良の選択でした:

.MPart Tree{
  font-size: 10;
}
2
harryssuperman

Vegerの返信のおかげで、PHP Explorer in PHP Perspective(PDT installed))のフォントを正常に変更しました。次のCSSコードは、

    #org-Eclipse-php-ui-Explorer Tree {
       font-family: Consolas;
       font-size: 21px;
    }

「Eclipse-4.3\plugins\org.Eclipse.platform_4.3.1.v20130911-1000\css\e4_default_win7.css」ファイルに追加されます。

PreferencesGeneralAppearance: "Theme"ドロップダウンリストで選択したテーマに応じて、別のCSSファイルを選択できます。 。

0
jinhr

Eclipse 4.7.xでは、CSSファイルはEclipse⁩/⁨plugins⁩/⁨org.Eclipse.ui.themes_1.2.1.v20170809-1435⁩/⁨css⁩/にあります

私の場合、OSXのダークテーマを使用しているので、e4-dark_mac.cssファイルを開き、font-size行を追加しました。

CTabFolder Tree, CTabFolder Canvas {
    background-color: #2F2F2F;
    color: #CCC;
    font-size: 13pt; // new 
}
0
DevCat