Searched defs:title (Results 126 - 137 of 137) sorted by relevance

123456

/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTabbedPaneUI.java517 * when the title of a mnemonic changes, or when tabs are added/removed.
862 String title = tabPane.getTitleAt(tabIndex);
867 layoutLabel(tabPlacement, metrics, tabIndex, title, icon,
871 String clippedTitle = title;
877 clippedTitle = SwingUtilities2.clipStringIfNecessary(null, metrics, title, availTextWidth);
879 clippedTitle = SwingUtilities2.clipStringIfNecessary(null, metrics, title, textRect.width);
1017 String title, Icon icon,
1028 metrics, title, icon,
1058 String title, Rectangle textRect,
1082 title, mnemInde
1015 layoutLabel(int tabPlacement, FontMetrics metrics, int tabIndex, String title, Icon icon, Rectangle tabRect, Rectangle iconRect, Rectangle textRect, boolean isSelected ) argument
1056 paintText(Graphics g, int tabPlacement, Font font, FontMetrics metrics, int tabIndex, String title, Rectangle textRect, boolean isSelected) argument
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.cpp115 stringStream title; local
116 title.print("BlockListBuilder ");
117 scope->method()->print_name(&title);
118 CFGPrinter::print_cfg(_bci2block, title.as_string(), false, false);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFileChooserUI.java803 * Returns the title of this dialog
879 private Object showNewFolderDialog(final Component parentComponent, final Object message, final String title, final int messageType, final Icon icon, final Object[] options, final Object initialSelectionValue) { argument
885 final JDialog dialog = pane.createDialog(parentComponent, title);
906 newFolderTitleText, // title
H A DAquaTabbedPaneCopyFromBasicUI.java492 * when the title of a mnemonic changes, or when tabs are added/removed.
818 final String title = tabPane.getTitleAt(tabIndex);
823 layoutLabel(tabPlacement, metrics, tabIndex, title, icon, tabRect, iconRect, textRect, isSelected);
826 String clippedTitle = title;
830 clippedTitle = SwingUtilities2.clipStringIfNecessary(null, metrics, title, availTextWidth);
962 protected void layoutLabel(final int tabPlacement, final FontMetrics metrics, final int tabIndex, final String title, final Icon icon, final Rectangle tabRect, final Rectangle iconRect, final Rectangle textRect, final boolean isSelected) { argument
970 SwingUtilities.layoutCompoundLabel(tabPane, metrics, title, icon, SwingConstants.CENTER, SwingConstants.CENTER, SwingConstants.CENTER, SwingConstants.TRAILING, tabRect, iconRect, textRect, textIconGap);
988 protected void paintText(final Graphics g, final int tabPlacement, final Font font, final FontMetrics metrics, final int tabIndex, final String title, final Rectangle textRect, final boolean isSelected) { argument
1009 SwingUtilities2.drawStringUnderlineCharAt(tabPane, g, title, mnemIndex, textRect.x, textRect.y + metrics.getAscent());
1013 SwingUtilities2.drawStringUnderlineCharAt(tabPane, g, title, mnemInde
[all...]
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPrinterJob.java483 String title = null;
487 title = rb.getString("dialog.printtofile");
490 FileDialog fileDialog = new FileDialog(ownerFrame, title,
1950 public PrintToFileErrorDialog(Frame parent, String title, String message, argument
1952 super(parent, title, true);
1953 init (parent, title, message, buttonText);
1956 public PrintToFileErrorDialog(Dialog parent, String title, String message, argument
1958 super(parent, title, true);
1959 init (parent, title, message, buttonText);
1962 private void init(Component parent, String title, Strin argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/tools/policytool/
H A DPolicyTool.java1245 char displayYesNoDialog(Window w, String title, String prompt, String yes, String no) { argument
1248 (title, tool, this, true);
1472 ToolDialog(String title, PolicyTool tool, ToolWindow tw, boolean modal) { argument
1474 setTitle(title);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Window.cpp77 jstring title; member in struct:SetTitleStruct
457 void AwtWindow::CreateHWnd(JNIEnv *env, LPCWSTR title, argument
488 AwtCanvas::CreateHWnd(env, title,
1365 /* Add in title. */
2279 jstring title = sts->title; local
2285 JNI_CHECK_NULL_GOTO(title, "null title", ret);
2290 int length = env->GetStringLength(title);
2292 env->GetStringRegion(title,
3157 Java_sun_awt_windows_WWindowPeer__1setTitle(JNIEnv *env, jobject self, jstring title) argument
[all...]
H A Dawt_Component.cpp421 * Fix for 4964237: Win XP: Changing theme changes java dialogs title icon
436 //Fixed 6233560: PIT: Java Cup Logo on the title bar of top-level windows look blurred, Win32
475 AwtComponent::CreateHWnd(JNIEnv *env, LPCWSTR title, argument
512 title,
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp4613 extern void report_error(char* file_name, int line_no, char* title, char* format, ...);
5039 int os::message_box(const char* title, const char* message) { argument
5044 err.print_raw_cr(title);
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp4427 extern void report_error(char* file_name, int line_no, char* title, char* format, ...);
4826 int os::message_box(const char* title, const char* message) { argument
4831 err.print_raw_cr(title);
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp4444 int os::message_box(const char* title, const char* message) { argument
4449 err.print_raw_cr(title);
4986 void report_error(const char* file_name, int line_no, const char* title, const char* format, ...);
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp3697 int os::message_box(const char* title, const char* message) { argument
3698 int result = MessageBox(NULL, message, title,

Completed in 183 milliseconds

123456