< prev index next >

src/java.desktop/unix/classes/sun/awt/X11/XFileDialogPeer.java

Print this page

        

*** 133,142 **** --- 133,143 ---- XFileDialogPeer(FileDialog target) { super((Dialog)target); this.target = target; } + @SuppressWarnings("deprecation") private void init(FileDialog target) { fileDialog = target; //new Dialog(target, target.getTitle(), false); this.title = target.getTitle(); this.mode = target.getMode(); this.target = target;
*** 412,421 **** --- 413,423 ---- } /** * handle the cancel event */ + @SuppressWarnings("deprecation") void handleCancel() { KeyboardFocusManager.getCurrentKeyboardFocusManager() .removeKeyEventDispatcher(this); setSelectionField(null);
*** 433,451 **** --- 435,455 ---- } /** * handle the quit event */ + @SuppressWarnings("deprecation") void handleQuitButton() { dir = null; file = null; target.hide(); } /** * set the entry of the new dir with f */ + @SuppressWarnings("deprecation") void setFilterEntry(String d, String f) { File fe = new File(d); if (fe.isDirectory() && fe.canRead()) { // Fixed 6260659: File Name set programmatically in FileDialog is overridden during navigation, XToolkit
*** 636,645 **** --- 640,650 ---- handleQuitButton(); } } } + @SuppressWarnings("deprecation") public boolean dispatchKeyEvent(KeyEvent keyEvent) { int id = keyEvent.getID(); int keyCode = keyEvent.getKeyCode(); if (id == KeyEvent.KEY_PRESSED && keyCode == KeyEvent.VK_ESCAPE) {
*** 772,781 **** --- 777,787 ---- } super.dispose(); } // 03/02/2005 b5097243 Pressing 'ESC' on a file dlg does not dispose the dlg on Xtoolkit + @SuppressWarnings("deprecation") public void setVisible(boolean b){ if (fileDialog == null) { init(target); }
*** 850,859 **** --- 856,866 ---- class Separator extends Canvas { public final static int HORIZONTAL = 0; public final static int VERTICAL = 1; int orientation; + @SuppressWarnings("deprecation") public Separator(int length, int thickness, int orient) { super(); orientation = orient; if (orient == HORIZONTAL) { resize(length, thickness);
*** 861,870 **** --- 868,878 ---- // VERTICAL resize(thickness, length); } } + @SuppressWarnings("deprecation") public void paint(Graphics g) { int x1, y1, x2, y2; Rectangle bbox = bounds(); Color c = getBackground(); Color brighter = c.brighter();
< prev index next >