Home
last modified time | relevance | path

Searched refs:panel (Results 1 – 25 of 91) sorted by relevance

1234

/trunk/main/javainstaller2/src/JavaSetup/org/openoffice/setup/
H A DSetupFrame.java111 mCardPanel.add(panel.getPanel(), name); in addPanel()
112 panel.setSetupFrame(this); in addPanel()
113 mDeck.addPanel(panel, name); in addPanel()
126 if (panel != null) { in setCurrentPanel()
137 name = panel.getName(); in setCurrentPanel()
140 panel = mDeck.setCurrentPanel(name); in setCurrentPanel()
141 if (panel != null) in setCurrentPanel()
143 setButtonsForPanel(panel); in setCurrentPanel()
144 panel.beforeShow(); in setCurrentPanel()
146 panel.duringShow(); in setCurrentPanel()
[all …]
H A DPanelController.java31 private JPanel panel; field in PanelController
39 public PanelController (String name, JPanel panel) { in PanelController() argument
41 this.panel = panel; in PanelController()
45 return this.panel; in getPanel()
48 public final void setPanel (JPanel panel) { in setPanel() argument
49 this.panel = panel; in setPanel()
H A DSetupActionListener.java82 PanelController panel = setupFrame.getCurrentPanel(); in actionPerformed() local
83 String previous = panel.getPrevious(); in actionPerformed()
86 PanelController panel = setupFrame.getCurrentPanel(); in actionPerformed() local
87 String next = panel.getNext(); in actionPerformed()
H A DDeckOfPanels.java38 void addPanel(PanelController panel, String name) { in addPanel() argument
39 mDeck.put(name, panel); in addPanel()
/trunk/main/scripting/examples/java/Newsgroup/
H A DPostNewsgroup.java181 JPanel panel = new JPanel(); in constructLabelPanel() local
182 panel.setLayout( new GridBagLayout() ); in constructLabelPanel()
198 panel.add( hostPanel, constraints ); in constructLabelPanel()
204 panel.add( replyPanel, constraints ); in constructLabelPanel()
210 panel.add( subjectPanel, constraints ); in constructLabelPanel()
216 panel.add( commentPanel, constraints ); in constructLabelPanel()
223 panel.add( emptyPanel, constraints ); in constructLabelPanel()
225 return panel; in constructLabelPanel()
254 JPanel panel = new JPanel(); in constructTextPanel() local
255 panel.setLayout( new GridBagLayout() ); in constructTextPanel()
[all …]
/trunk/main/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/
H A DInstallationOngoingCtrl.java70 InstallationOngoing panel = (InstallationOngoing)getPanel(); in beforeShow() local
71 panel.setStopButtonActionCommand(getSetupFrame().ACTION_STOP); in beforeShow()
72 panel.addStopButtonActionListener(getSetupFrame().getSetupActionListener()); in beforeShow()
99 InstallationOngoing panel = (InstallationOngoing)getPanel(); in duringShow()
109 panel.setTitle(titleText); in duringShow()
114 panel.setProgressValue(progress); in duringShow()
115 panel.setProgressText(packageData.getPackageName()); in duringShow()
154 panel.setTitle(titleText); in duringShow()
155 panel.setStopButtonEnabled(false); in duringShow()
165 panel.setProgressValue(progress); in duringShow()
[all …]
H A DUninstallationCompletedCtrl.java57 UninstallationCompleted panel = (UninstallationCompleted)getPanel(); in beforeShow() local
58 panel.setDetailsButtonActionCommand(getSetupFrame().ACTION_DETAILS); in beforeShow()
59 panel.addDetailsButtonActionListener(getSetupFrame().getSetupActionListener()); in beforeShow()
63 panel.setDialogText(dialogText); in beforeShow()
68 panel.setTitleText(titleText); in beforeShow()
70 panel.setDialogText(dialogText); in beforeShow()
73 panel.setTitleText(titleText); in beforeShow()
75 panel.setDialogText(dialogText); in beforeShow()
H A DInstallationCompletedCtrl.java58 installationCompleted panel = (installationCompleted)getPanel(); in beforeShow() local
59 panel.setDetailsButtonActionCommand(getSetupFrame().ACTION_DETAILS); in beforeShow()
60 panel.addDetailsButtonActionListener(getSetupFrame().getSetupActionListener()); in beforeShow()
64 panel.setTitleText(titleText); in beforeShow()
66 panel.setDialogText(dialogText); in beforeShow()
69 panel.setTitleText(titleText); in beforeShow()
71 panel.setDialogText(dialogText); in beforeShow()
H A DChooseUninstallationTypeCtrl.java66 ChooseUninstallationType panel = (ChooseUninstallationType)getPanel(); in beforeShow() local
67 panel.setActionListener((ChooseUninstallationTypeCtrl)this); in beforeShow()
68 panel.setCompleteActionCommand(data.getTypicalActionCommand()); in beforeShow()
69 panel.setCustomActionCommand(data.getCustomActionCommand()); in beforeShow()
75 ChooseUninstallationType panel = (ChooseUninstallationType)getPanel(); in afterShow() local
76 panel.removeActionListener((ChooseUninstallationTypeCtrl)this); in afterShow()
H A DChooseInstallationTypeCtrl.java85 ChooseInstallationType panel = (ChooseInstallationType)getPanel(); in beforeShow() local
86 panel.setActionListener((ChooseInstallationTypeCtrl)this); in beforeShow()
87 panel.setTypicalActionCommand(data.getTypicalActionCommand()); in beforeShow()
88 panel.setCustomActionCommand(data.getCustomActionCommand()); in beforeShow()
93 ChooseInstallationType panel = (ChooseInstallationType)getPanel(); in afterShow() local
94 panel.removeActionListener((ChooseInstallationTypeCtrl)this); in afterShow()
H A DUninstallationOngoingCtrl.java64 UninstallationOngoing panel = (UninstallationOngoing)getPanel(); in beforeShow() local
65 panel.setStopButtonActionCommand(getSetupFrame().ACTION_STOP); in beforeShow()
66 panel.addStopButtonActionListener(getSetupFrame().getSetupActionListener()); in beforeShow()
88 UninstallationOngoing panel = (UninstallationOngoing)getPanel(); in duringShow()
99 panel.setProgressValue(progress); in duringShow()
100 panel.setProgressText(packageData.getPackageName()); in duringShow()
H A DInstallationImminentCtrl.java111 InstallationImminent panel = (InstallationImminent)getPanel(); in beforeShow() local
112 panel.setInfoText(htmlInfoText); in beforeShow()
113 panel.setCaretPosition(); in beforeShow()
119 panel.setTitleText(dialogTitle); in beforeShow()
124 InstallationImminent panel = (InstallationImminent)getPanel(); in duringShow() local
125 panel.setTabOrder(); in duringShow()
H A DUninstallationImminentCtrl.java80 UninstallationImminent panel = (UninstallationImminent)getPanel(); in beforeShow() local
81 panel.setInfoText(htmlInfoText); in beforeShow()
82 panel.setCaretPosition(); in beforeShow()
89 UninstallationImminent panel = (UninstallationImminent)getPanel(); in duringShow() local
90 panel.setTabOrder(); in duringShow()
H A DChooseDirectoryCtrl.java98 ChooseDirectory panel = (ChooseDirectory)getPanel(); in beforeShow() local
116 panel.setDirectory(data.getInstallDir()); in beforeShow()
121 ChooseDirectory panel = (ChooseDirectory)getPanel(); in afterShow() local
122 String dir = panel.getDirectory(); in afterShow()
H A DChooseComponentsCtrl.java93 ChooseComponents panel = (ChooseComponents)getPanel(); in beforeShow() local
95 panel.setTitleText(dialogTitle); in beforeShow()
/trunk/main/scripting/java/org/openoffice/idesupport/ui/
H A DConfigurePanel.java174 JPanel panel = new JPanel(); in initMethodButtons() local
175 panel.setLayout(new GridBagLayout()); in initMethodButtons()
192 panel.add(addButton, gbc); in initMethodButtons()
201 panel.add(dummyPanel, gbc); in initMethodButtons()
203 return panel; in initMethodButtons()
207 JPanel panel = new JPanel(); in initScriptButtons() local
227 panel.add(removeButton); in initScriptButtons()
228 panel.add(removeAllButton); in initScriptButtons()
230 return panel; in initScriptButtons()
/trunk/main/scripting/java/org/openoffice/netbeans/modules/office/wizard/
H A DSelectPathVisualPanel.java51 private final SelectPathPanel panel; field in SelectPathVisualPanel
54 public SelectPathVisualPanel(SelectPathPanel panel) { in SelectPathVisualPanel() argument
55 this.panel = panel; in SelectPathVisualPanel()
57 OfficeInstallation orig = panel.getSelectedPath(); in SelectPathVisualPanel()
106 panel.setSelectedPath(oi); in installationsComboBoxActionPerformed()
203 panel.setSelectedPath(oi); in browseButtonActionPerformed()
H A DParcelPropertiesVisualPanel.java42 private final ParcelPropertiesPanel panel; field in ParcelPropertiesVisualPanel
45 public ParcelPropertiesVisualPanel(ParcelPropertiesPanel panel) { in ParcelPropertiesVisualPanel() argument
46 this.panel = panel; in ParcelPropertiesVisualPanel()
156 panel.setLanguage(language); in languagesComboBoxActionPerformed()
167 panel.setName(name); in changeName()
/trunk/main/scripting/java/org/openoffice/netbeans/modules/office/utils/
H A DNagDialog.java40 private JPanel panel; field in NagDialog
85 return this.panel; in getPanel()
95 this.panel = new JPanel(); in initUI()
119 this.panel.setLayout(new BorderLayout()); in initUI()
120 this.panel.add(optionPane, BorderLayout.CENTER); in initUI()
121 this.panel.add(checkPanel, BorderLayout.SOUTH); in initUI()
/trunk/main/scripting/java/org/openoffice/netbeans/modules/office/options/
H A DOfficeSettingsBeanInfo.java113 private SelectPathPanel panel; field in OfficeSettingsBeanInfo.OfficeDirectoryEditor
130 panel = new SelectPathPanel(); in getCustomEditor()
131 panel.addChangeListener(this); in getCustomEditor()
132 return panel.getComponent(); in getCustomEditor()
140 setValue(panel.getSelectedPath()); in stateChanged()
/trunk/main/offapi/com/sun/star/ui/
H A DXToolPanel.idl36 /** describes the basic interface to be implemented by a tool panel
40 /** provides access to the tool panel's main window.
43 …automatic positioning of the tool panel, might not be available, and must be implemented by the to…
47 /** creates the root of the Accessibility object tree for the tool panel
/trunk/main/fpicker/source/aqua/
H A DAquaFilePickerDelegate.hxx44 - (BOOL)panel:(id)sender shouldShowFilename:(NSString *)filename;
46 - (void)panel:(id)sender directoryDidChange:(NSString *)path;
H A DAquaFilePickerDelegate.cxx55 - (BOOL)panel:(id)sender shouldShowFilename:(NSString *)filename
72 - (void)panel:(id)sender directoryDidChange:(NSString *)path
/trunk/main/sfx2/inc/sfx2/sidebar/
H A DResourceDefinitions.hrc63 //panel common
118 //about popup panel
/trunk/main/odk/examples/cpp/custompanel/
H A DMakefile32 COMP_NAME=custom-tool-panel
136 …dowState.xcu CalcWindowState.xcu DrawWindowState.xcu ImpressWindowState.xcu Factories.xcu panel.png

Completed in 76 milliseconds

1234