Vous devez être membre et vous identifier pour publier un article.
Les visiteurs peuvent toutefois commenter chaque article par une réponse.

Clés du UIManager

Sommaire du document

Astuces de l’Infobrol (Java)Article publié le Mercredi 02 Juin 2010, 08:42


Une petite méthode sympa pour récupérer les clés des propriétés du UIManager :

  1. List<String> colors = new ArrayList<String>();
  2. for (Map.Entry<Object, Object> entry : UIManager.getDefaults().entrySet()) {
  3. if (entry.getValue() instanceof Color) {
  4. colors.add((String) entry.getKey()); // all the keys are strings
  5. }
  6. }
  7. Collections.sort(colors);
  8. for (String name : colors)
  9. System.out.println(name+": "+UIManager.getColor(name));


Un exemple de valeurs :
  1. Button.background: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  2. Button.darkShadow: javax.swing.plaf.ColorUIResource[r=128,g=128,b=128]
  3. Button.disabledText: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  4. Button.focus: javax.swing.plaf.ColorUIResource[r=245,g=165,b=16]
  5. Button.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  6. Button.highlight: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  7. Button.light: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  8. Button.select: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  9. Button.shadow: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  10. CheckBox.background: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  11. CheckBox.check: javax.swing.plaf.ColorUIResource[r=33,g=161,b=33]
  12. CheckBox.disabledText: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  13. CheckBox.focus: javax.swing.plaf.ColorUIResource[r=245,g=165,b=16]
  14. CheckBox.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  15. CheckBoxMenuItem.acceleratorForeground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  16. CheckBoxMenuItem.acceleratorSelectionBackground: javax.swing.plaf.ColorUIResource[r=49,g=106,b=196]
  17. CheckBoxMenuItem.acceleratorSelectionForeground: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  18. CheckBoxMenuItem.background: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  19. CheckBoxMenuItem.disabledForeground: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  20. CheckBoxMenuItem.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  21. CheckBoxMenuItem.selectionBackground: javax.swing.plaf.ColorUIResource[r=49,g=106,b=196]
  22. CheckBoxMenuItem.selectionForeground: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  23. Checkbox.select: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  24. ColorChooser.background: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  25. ColorChooser.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  26. ColorChooser.swatchesDefaultRecentColor: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  27. ComboBox.background: java.awt.Color[r=255,g=255,b=255]
  28. ComboBox.buttonBackground: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  29. ComboBox.buttonDarkShadow: javax.swing.plaf.ColorUIResource[r=128,g=128,b=128]
  30. ComboBox.buttonHighlight: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  31. ComboBox.buttonShadow: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  32. ComboBox.disabledBackground: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  33. ComboBox.disabledForeground: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  34. ComboBox.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  35. ComboBox.selectionBackground: javax.swing.plaf.ColorUIResource[r=49,g=106,b=196]
  36. ComboBox.selectionForeground: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  37. Desktop.background: javax.swing.plaf.ColorUIResource[r=166,g=202,b=240]
  38. DesktopIcon.background: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  39. DesktopIcon.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  40. EditorPane.background: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  41. EditorPane.caretForeground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  42. EditorPane.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  43. EditorPane.inactiveForeground: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  44. EditorPane.selectionBackground: javax.swing.plaf.ColorUIResource[r=49,g=106,b=196]
  45. EditorPane.selectionForeground: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  46. FormattedTextField.background: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  47. FormattedTextField.caretForeground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  48. FormattedTextField.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  49. FormattedTextField.inactiveBackground: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  50. FormattedTextField.inactiveForeground: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  51. FormattedTextField.selectionBackground: javax.swing.plaf.ColorUIResource[r=49,g=106,b=196]
  52. FormattedTextField.selectionForeground: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  53. InternalFrame.activeTitleBackground: javax.swing.plaf.ColorUIResource[r=195,g=212,b=232]
  54. InternalFrame.activeTitleForeground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  55. InternalFrame.borderColor: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  56. InternalFrame.borderDarkShadow: javax.swing.plaf.ColorUIResource[r=128,g=128,b=128]
  57. InternalFrame.borderHighlight: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  58. InternalFrame.borderLight: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  59. InternalFrame.borderShadow: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  60. InternalFrame.inactiveTitleBackground: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  61. InternalFrame.inactiveTitleForeground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  62. Label.background: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  63. Label.disabledForeground: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  64. Label.disabledShadow: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  65. Label.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  66. List.background: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  67. List.dropLineColor: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  68. List.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  69. List.selectionBackground: javax.swing.plaf.ColorUIResource[r=49,g=106,b=196]
  70. List.selectionForeground: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  71. Menu.acceleratorForeground: javax.swing.plaf.ColorUIResource[r=49,g=106,b=196]
  72. Menu.acceleratorSelectionForeground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  73. Menu.background: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  74. Menu.disabledForeground: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  75. Menu.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  76. Menu.selectionBackground: javax.swing.plaf.ColorUIResource[r=49,g=106,b=196]
  77. Menu.selectionForeground: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  78. MenuBar.background: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  79. MenuBar.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  80. MenuBar.highlight: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  81. MenuBar.shadow: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  82. MenuItem.acceleratorForeground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  83. MenuItem.acceleratorSelectionBackground: javax.swing.plaf.ColorUIResource[r=49,g=106,b=196]
  84. MenuItem.acceleratorSelectionForeground: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  85. MenuItem.background: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  86. MenuItem.disabledForeground: java.awt.Color[r=192,g=192,b=192]
  87. MenuItem.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  88. MenuItem.selectionBackground: javax.swing.plaf.ColorUIResource[r=49,g=106,b=196]
  89. MenuItem.selectionForeground: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  90. OptionPane.background: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  91. OptionPane.errorDialog.border.background: javax.swing.plaf.ColorUIResource[r=153,g=51,b=51]
  92. OptionPane.errorDialog.titlePane.background: javax.swing.plaf.ColorUIResource[r=255,g=153,b=153]
  93. OptionPane.errorDialog.titlePane.foreground: javax.swing.plaf.ColorUIResource[r=51,g=0,b=0]
  94. OptionPane.errorDialog.titlePane.shadow: javax.swing.plaf.ColorUIResource[r=204,g=102,b=102]
  95. OptionPane.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  96. OptionPane.messageForeground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  97. OptionPane.questionDialog.border.background: javax.swing.plaf.ColorUIResource[r=51,g=102,b=51]
  98. OptionPane.questionDialog.titlePane.background: javax.swing.plaf.ColorUIResource[r=153,g=204,b=153]
  99. OptionPane.questionDialog.titlePane.foreground: javax.swing.plaf.ColorUIResource[r=0,g=51,b=0]
  100. OptionPane.questionDialog.titlePane.shadow: javax.swing.plaf.ColorUIResource[r=102,g=153,b=102]
  101. OptionPane.warningDialog.border.background: javax.swing.plaf.ColorUIResource[r=153,g=102,b=51]
  102. OptionPane.warningDialog.titlePane.background: javax.swing.plaf.ColorUIResource[r=255,g=204,b=153]
  103. OptionPane.warningDialog.titlePane.foreground: javax.swing.plaf.ColorUIResource[r=102,g=51,b=0]
  104. OptionPane.warningDialog.titlePane.shadow: javax.swing.plaf.ColorUIResource[r=204,g=153,b=102]
  105. Panel.background: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  106. Panel.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  107. PasswordField.background: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  108. PasswordField.caretForeground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  109. PasswordField.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  110. PasswordField.inactiveBackground: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  111. PasswordField.inactiveForeground: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  112. PasswordField.selectionBackground: javax.swing.plaf.ColorUIResource[r=49,g=106,b=196]
  113. PasswordField.selectionForeground: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  114. PopupMenu.background: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  115. PopupMenu.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  116. ProgressBar.background: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  117. ProgressBar.foreground: javax.swing.plaf.ColorUIResource[r=195,g=212,b=232]
  118. ProgressBar.selectionBackground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  119. ProgressBar.selectionForeground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  120. RadioButton.background: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  121. RadioButton.check: javax.swing.plaf.ColorUIResource[r=33,g=161,b=33]
  122. RadioButton.darkShadow: javax.swing.plaf.ColorUIResource[r=128,g=128,b=128]
  123. RadioButton.disabledText: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  124. RadioButton.focus: javax.swing.plaf.ColorUIResource[r=245,g=165,b=16]
  125. RadioButton.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  126. RadioButton.highlight: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  127. RadioButton.interiorBackground: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  128. RadioButton.light: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  129. RadioButton.select: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  130. RadioButton.shadow: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  131. RadioButtonMenuItem.acceleratorForeground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  132. RadioButtonMenuItem.acceleratorSelectionBackground: javax.swing.plaf.ColorUIResource[r=49,g=106,b=196]
  133. RadioButtonMenuItem.acceleratorSelectionForeground: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  134. RadioButtonMenuItem.background: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  135. RadioButtonMenuItem.disabledForeground: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  136. RadioButtonMenuItem.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  137. RadioButtonMenuItem.selectionBackground: javax.swing.plaf.ColorUIResource[r=49,g=106,b=196]
  138. RadioButtonMenuItem.selectionForeground: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  139. ScrollBar.background: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  140. ScrollBar.darkShadow: javax.swing.plaf.ColorUIResource[r=128,g=128,b=128]
  141. ScrollBar.foreground: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  142. ScrollBar.highlight: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  143. ScrollBar.shadow: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  144. ScrollBar.thumb: javax.swing.plaf.ColorUIResource[r=195,g=212,b=232]
  145. ScrollBar.thumbDarkShadow: javax.swing.plaf.ColorUIResource[r=128,g=128,b=128]
  146. ScrollBar.thumbHighlight: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  147. ScrollBar.thumbShadow: javax.swing.plaf.ColorUIResource[r=49,g=106,b=196]
  148. ScrollBar.track: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  149. ScrollBar.trackHighlight: javax.swing.plaf.ColorUIResource[r=128,g=128,b=128]
  150. ScrollPane.background: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  151. ScrollPane.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  152. Separator.background: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  153. Separator.foreground: javax.swing.plaf.ColorUIResource[r=128,g=128,b=128]
  154. Separator.highlight: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  155. Separator.shadow: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  156. SimpleInternalFrame.activeTitleBackground: javax.swing.plaf.ColorUIResource[r=49,g=106,b=196]
  157. SimpleInternalFrame.activeTitleForeground: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  158. Slider.background: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  159. Slider.focus: javax.swing.plaf.ColorUIResource[r=245,g=165,b=16]
  160. Slider.foreground: javax.swing.plaf.ColorUIResource[r=195,g=212,b=232]
  161. Slider.highlight: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  162. Slider.shadow: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  163. Slider.tickColor: java.awt.Color[r=0,g=0,b=0]
  164. Spinner.background: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  165. Spinner.foreground: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  166. SplitPane.background: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  167. SplitPane.darkShadow: javax.swing.plaf.ColorUIResource[r=128,g=128,b=128]
  168. SplitPane.dividerFocusColor: javax.swing.plaf.ColorUIResource[r=195,g=212,b=232]
  169. SplitPane.highlight: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  170. SplitPane.shadow: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  171. SplitPaneDivider.draggingColor: javax.swing.plaf.ColorUIResource[r=64,g=64,b=64]
  172. TabbedPane.background: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  173. TabbedPane.darkShadow: javax.swing.plaf.ColorUIResource[r=128,g=128,b=128]
  174. TabbedPane.focus: javax.swing.plaf.ColorUIResource[r=245,g=165,b=16]
  175. TabbedPane.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  176. TabbedPane.highlight: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  177. TabbedPane.light: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  178. TabbedPane.selectHighlight: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  179. TabbedPane.selected: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  180. TabbedPane.shadow: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  181. TabbedPane.tabAreaBackground: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  182. Table.background: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  183. Table.dropLineColor: javax.swing.plaf.ColorUIResource[r=245,g=165,b=16]
  184. Table.dropLineShortColor: javax.swing.plaf.ColorUIResource[r=49,g=106,b=196]
  185. Table.focusCellBackground: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  186. Table.focusCellForeground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  187. Table.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  188. Table.gridColor: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  189. Table.selectionBackground: javax.swing.plaf.ColorUIResource[r=49,g=106,b=196]
  190. Table.selectionForeground: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  191. Table.sortIconColor: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  192. TableHeader.background: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  193. TableHeader.focusCellBackground: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  194. TableHeader.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  195. TextArea.background: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  196. TextArea.caretForeground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  197. TextArea.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  198. TextArea.inactiveBackground: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  199. TextArea.inactiveForeground: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  200. TextArea.selectionBackground: javax.swing.plaf.ColorUIResource[r=49,g=106,b=196]
  201. TextArea.selectionForeground: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  202. TextField.background: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  203. TextField.caretForeground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  204. TextField.darkShadow: javax.swing.plaf.ColorUIResource[r=128,g=128,b=128]
  205. TextField.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  206. TextField.highlight: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  207. TextField.inactiveBackground: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  208. TextField.inactiveForeground: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  209. TextField.light: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  210. TextField.selectionBackground: javax.swing.plaf.ColorUIResource[r=49,g=106,b=196]
  211. TextField.selectionForeground: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  212. TextField.shadow: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  213. TextPane.background: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  214. TextPane.caretForeground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  215. TextPane.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  216. TextPane.inactiveForeground: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  217. TextPane.selectionBackground: javax.swing.plaf.ColorUIResource[r=49,g=106,b=196]
  218. TextPane.selectionForeground: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  219. TitledBorder.titleColor: javax.swing.plaf.ColorUIResource[r=49,g=106,b=196]
  220. ToggleButton.background: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  221. ToggleButton.darkShadow: javax.swing.plaf.ColorUIResource[r=128,g=128,b=128]
  222. ToggleButton.disabledText: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  223. ToggleButton.focus: javax.swing.plaf.ColorUIResource[r=245,g=165,b=16]
  224. ToggleButton.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  225. ToggleButton.highlight: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  226. ToggleButton.light: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  227. ToggleButton.select: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  228. ToggleButton.shadow: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  229. ToolBar.background: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  230. ToolBar.darkShadow: javax.swing.plaf.ColorUIResource[r=128,g=128,b=128]
  231. ToolBar.dockingBackground: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  232. ToolBar.dockingForeground: javax.swing.plaf.ColorUIResource[r=49,g=106,b=196]
  233. ToolBar.floatingBackground: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  234. ToolBar.floatingForeground: javax.swing.plaf.ColorUIResource[r=195,g=212,b=232]
  235. ToolBar.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  236. ToolBar.highlight: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  237. ToolBar.light: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  238. ToolBar.shadow: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  239. ToolTip.background: javax.swing.plaf.ColorUIResource[r=195,g=212,b=232]
  240. ToolTip.backgroundInactive: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  241. ToolTip.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  242. ToolTip.foregroundInactive: javax.swing.plaf.ColorUIResource[r=128,g=128,b=128]
  243. Tree.background: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  244. Tree.dropLineColor: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  245. Tree.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  246. Tree.hash: javax.swing.plaf.ColorUIResource[r=128,g=128,b=128]
  247. Tree.line: javax.swing.plaf.ColorUIResource[r=128,g=128,b=128]
  248. Tree.selectionBackground: javax.swing.plaf.ColorUIResource[r=49,g=106,b=196]
  249. Tree.selectionBorderColor: javax.swing.plaf.ColorUIResource[r=245,g=165,b=16]
  250. Tree.selectionForeground: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  251. Tree.textBackground: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  252. Tree.textForeground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  253. Viewport.background: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  254. Viewport.foreground: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  255. activeCaption: javax.swing.plaf.ColorUIResource[r=195,g=212,b=232]
  256. activeCaptionBorder: javax.swing.plaf.ColorUIResource[r=195,g=212,b=232]
  257. activeCaptionText: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  258. control: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  259. controlDkShadow: javax.swing.plaf.ColorUIResource[r=128,g=128,b=128]
  260. controlHighlight: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  261. controlLtHighlight: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  262. controlShadow: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  263. controlText: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  264. desktop: javax.swing.plaf.ColorUIResource[r=166,g=202,b=240]
  265. inactiveCaption: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  266. inactiveCaptionBorder: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  267. inactiveCaptionText: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  268. info: javax.swing.plaf.ColorUIResource[r=195,g=212,b=232]
  269. infoText: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  270. menu: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  271. menuText: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  272. primaryControlHighlight: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  273. scrollbar: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  274. text: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  275. textHighlight: javax.swing.plaf.ColorUIResource[r=49,g=106,b=196]
  276. textHighlightText: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  277. textInactiveText: javax.swing.plaf.ColorUIResource[r=189,g=190,b=176]
  278. textText: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]
  279. unifiedControlShadow: javax.swing.plaf.ColorUIResource[r=128,g=128,b=128]
  280. window: javax.swing.plaf.ColorUIResource[r=255,g=255,b=255]
  281. windowBorder: javax.swing.plaf.ColorUIResource[r=236,g=233,b=216]
  282. windowText: javax.swing.plaf.ColorUIResource[r=0,g=0,b=0]


Avatar :: MartialMeat Un article de MartialMeat, lu 234 fois.


Source : stackoverflow.com


Commentaires

Sélection, tri et recherche d'articles
FILTRER :
TRIER :1er critère : 2e critère :
CHERCHER : Dans les titres Dans le contenu


[Afficher les liens en fonction des critères du formulaire ci-dessus]

 

Réseaux sociaux

Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher les interactions avec les réseaux sociaux sur ces pages.

 

Nuage de mots clés

372 mots clés dont 1 définis manuellement (plus d'information...).

Collections.sort +UIManager.getColor .entrySet /syntax activeCaption: activeCaptionBorder: activeCaptionText: ArrayList<String> astuce background button Button.background: Button.darkShadow: Button.disabledText: Button.focus: Button.foreground: Button.highlight: Button.light: Button.select: Button.shadow: caretForeground Checkbox CheckBox.background: CheckBox.check: CheckBox.disabledText: CheckBox.focus: CheckBox.foreground: Checkbox.select: CheckBoxMenuItem.acceleratorForeground: CheckBoxMenuItem.acceleratorSelectionBackground: CheckBoxMenuItem.acceleratorSelectionForeground: CheckBoxMenuItem.background: CheckBoxMenuItem.disabledForeground: CheckBoxMenuItem.foreground: CheckBoxMenuItem.selectionBackground: CheckBoxMenuItem.selectionForeground: clé Clés Collections.sort ColorChooser ColorChooser.background: ColorChooser.foreground: ColorChooser.swatchesDefaultRecentColor: colors colors.add ComboBox ComboBox.background: ComboBox.buttonBackground: ComboBox.buttonDarkShadow: ComboBox.buttonHighlight: ComboBox.buttonShadow: ComboBox.disabledBackground: ComboBox.disabledForeground: ComboBox.foreground: ComboBox.selectionBackground: ComboBox.selectionForeground: control: controlDkShadow: controlHighlight: controlLtHighlight: controlShadow controlShadow: controlText controlText: darkShadow Desktop.background: desktop: DesktopIcon.background: DesktopIcon.foreground: disabledText EditorPane EditorPane.background: EditorPane.caretForeground: EditorPane.foreground: EditorPane.inactiveForeground: EditorPane.selectionBackground: EditorPane.selectionForeground: entry.getKey entry.getValue entrySet exemple focus foreground FormattedTextField FormattedTextField.background: FormattedTextField.caretForeground: FormattedTextField.foreground: FormattedTextField.inactiveBackground: FormattedTextField.inactiveForeground: FormattedTextField.selectionBackground: FormattedTextField.selectionForeground: Gaudry getDefaults highlight inactiveCaption inactiveCaption: inactiveCaptionBorder inactiveCaptionBorder: inactiveCaptionText inactiveCaptionText: infoText infoText: instanceof InternalFrame InternalFrame.activeTitleBackground: InternalFrame.activeTitleForeground: InternalFrame.borderColor: InternalFrame.borderDarkShadow: InternalFrame.borderHighlight: InternalFrame.borderLight: InternalFrame.borderShadow: InternalFrame.inactiveTitleBackground: InternalFrame.inactiveTitleForeground: java.awt.Color javax.swing.plaf.ColorUIResource Label Label.background: Label.disabledForeground: Label.disabledShadow: Label.foreground: List.background: List.dropLineColor: List.foreground: List.selectionBackground: List.selectionForeground: List<String> Map.Entry<Object Menu.acceleratorForeground: Menu.acceleratorSelectionForeground: Menu.background: Menu.disabledForeground: Menu.foreground: Menu.selectionBackground: Menu.selectionForeground: MenuBar MenuBar.background: MenuBar.foreground: MenuBar.highlight: MenuBar.shadow: MenuItem MenuItem.acceleratorForeground: MenuItem.acceleratorSelectionBackground: MenuItem.acceleratorSelectionForeground: MenuItem.background: MenuItem.disabledForeground: MenuItem.foreground: MenuItem.selectionBackground: MenuItem.selectionForeground: menuText menuText: méthode Object> OptionPane OptionPane.background: OptionPane.errorDialog.border.background: OptionPane.errorDialog.titlePane.background: OptionPane.errorDialog.titlePane.foreground: OptionPane.errorDialog.titlePane.shadow: OptionPane.foreground: OptionPane.messageForeground: OptionPane.questionDialog.border.background: OptionPane.questionDialog.titlePane.background: OptionPane.questionDialog.titlePane.foreground: OptionPane.questionDialog.titlePane.shadow: OptionPane.warningDialog.border.background: OptionPane.warningDialog.titlePane.background: OptionPane.warningDialog.titlePane.foreground: OptionPane.warningDialog.titlePane.shadow: Panel Panel.background: Panel.foreground: PasswordField PasswordField.background: PasswordField.caretForeground: PasswordField.foreground: PasswordField.inactiveBackground: PasswordField.inactiveForeground: PasswordField.selectionBackground: PasswordField.selectionForeground: petite PopupMenu PopupMenu.background: PopupMenu.foreground: primaryControlHighlight primaryControlHighlight: ProgressBar ProgressBar.background: ProgressBar.foreground: ProgressBar.selectionBackground: ProgressBar.selectionForeground: propriété propriétés RadioButton RadioButton.background: RadioButton.check: RadioButton.darkShadow: RadioButton.disabledText: RadioButton.focus: RadioButton.foreground: RadioButton.highlight: RadioButton.interiorBackground: RadioButton.light: RadioButton.select: RadioButton.shadow: RadioButtonMenuItem RadioButtonMenuItem.acceleratorForeground: RadioButtonMenuItem.acceleratorSelectionBackground: RadioButtonMenuItem.acceleratorSelectionForeground: RadioButtonMenuItem.background: RadioButtonMenuItem.disabledForeground: RadioButtonMenuItem.foreground: RadioButtonMenuItem.selectionBackground: RadioButtonMenuItem.selectionForeground: récupérer ScrollBar ScrollBar.background: ScrollBar.darkShadow: ScrollBar.foreground: ScrollBar.highlight: ScrollBar.shadow: ScrollBar.thumb: ScrollBar.thumbDarkShadow: ScrollBar.thumbHighlight: ScrollBar.thumbShadow: ScrollBar.track: ScrollBar.trackHighlight: scrollbar: ScrollPane.background: ScrollPane.foreground: Separator.background: Separator.foreground: Separator.highlight: Separator.shadow: shadow Signaler une erreur SimpleInternalFrame SimpleInternalFrame.activeTitleBackground: SimpleInternalFrame.activeTitleForeground: Slider Slider.background: Slider.focus: Slider.foreground: Slider.highlight: Slider.shadow: Slider.tickColor: Spinner.background: Spinner.foreground: SplitPane SplitPane.background: SplitPane.darkShadow: SplitPane.dividerFocusColor: SplitPane.highlight: SplitPane.shadow: SplitPaneDivider SplitPaneDivider.draggingColor: String strings Stéphane Gaudry syntax= System.out.println TabbedPane TabbedPane.background: TabbedPane.darkShadow: TabbedPane.focus: TabbedPane.foreground: TabbedPane.highlight: TabbedPane.light: TabbedPane.selected: TabbedPane.selectHighlight: TabbedPane.shadow: TabbedPane.tabAreaBackground: Table.background: Table.dropLineColor: Table.dropLineShortColor: Table.focusCellBackground: Table.focusCellForeground: Table.foreground: Table.gridColor: Table.selectionBackground: Table.selectionForeground: Table.sortIconColor: TableHeader TableHeader.background: TableHeader.focusCellBackground: TableHeader.foreground: TextArea TextArea.background: TextArea.caretForeground: TextArea.foreground: TextArea.inactiveBackground: TextArea.inactiveForeground: TextArea.selectionBackground: TextArea.selectionForeground: TextField TextField.background: TextField.caretForeground: TextField.darkShadow: TextField.foreground: TextField.highlight: TextField.inactiveBackground: TextField.inactiveForeground: TextField.light: TextField.selectionBackground: TextField.selectionForeground: TextField.shadow: textHighlight textHighlight: textHighlightText textHighlightText: textInactiveText textInactiveText: TextPane TextPane.background: TextPane.caretForeground: TextPane.foreground: TextPane.inactiveForeground: TextPane.selectionBackground: TextPane.selectionForeground: textText: tip TitledBorder TitledBorder.titleColor: ToggleButton ToggleButton.background: ToggleButton.darkShadow: ToggleButton.disabledText: ToggleButton.focus: ToggleButton.foreground: ToggleButton.highlight: ToggleButton.light: ToggleButton.select: ToggleButton.shadow: ToolBar ToolBar.background: ToolBar.darkShadow: ToolBar.dockingBackground: ToolBar.dockingForeground: ToolBar.floatingBackground: ToolBar.floatingForeground: ToolBar.foreground: ToolBar.highlight: ToolBar.light: ToolBar.shadow: ToolTip ToolTip.background: ToolTip.backgroundInactive: ToolTip.foreground: ToolTip.foregroundInactive: Tree.background: Tree.dropLineColor: Tree.foreground: Tree.hash: Tree.line: Tree.selectionBackground: Tree.selectionBorderColor: Tree.selectionForeground: Tree.textBackground: Tree.textForeground: UIManager UIManager.getColor UIManager.getDefaults unifiedControlShadow unifiedControlShadow: valeurs Viewport Viewport.background: Viewport.foreground: window: windowBorder windowBorder: windowText windowText:

Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher le nuage de mots clés.

 

Astuce pour imprimer les couleurs des cellules de tableaux : http://www.gaudry.be/ast-rf-450.html

© Ce document issu de l′infobrol est enregistré sous le certificat Cyber PrInterDeposit Digital Numbertection. Enregistrement IDDN n° 5329-419
Document créé le 13/09/04 00:00, dernière modification le Vendredi 17 Juin 2011, 12:11
Source du document imprimé : http://www.gaudry.be/ast.html Document affiché 6791 fois ce mois de Mai.
St.Gaudry©07.01.02
Outils (masquer)
||
Recherche (afficher)
Recherche :

Utilisateur (masquer)
Apparence (afficher)
Stats (afficher)
15832 documents
452 astuces.
549 niouzes.
3099 definitions.
447 membres.
8115 messages.

Document genere en :
1,26 seconde

Mises à jour :
Mises à jour du site
Citation (masquer)
Combien réalisent chaque matin le privilège de se réveiller et de voir, de sentir, de toucher, d'entendre, de ressentir? Combien d'entre nous sont-ils capables d'oublier un instant leurs tracas pour s'émerveiller de ce spectacle inouï?

Marc Levy [Extrait de Et si c'était vrai...]
 
l'infobrol
Nous sommes le Mercredi 30 Mai 2012, 13:47, toutes les heures sont au format GMT+1.00 Heure, heure d'été (+1)