HomeSort by relevance Sort by last modified time
    Searched defs:panel (Results 1 - 25 of 64) sorted by null

1 2 3

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
panel.h 34 /* $Id: panel.h,v 1.10 2006/05/27 19:49:40 tom Exp $ */
36 /* panel.h -- interface file for panels library */
43 typedef struct panel struct
46 struct panel *below;
47 struct panel *above;
49 } PANEL;
55 extern NCURSES_EXPORT(WINDOW*) panel_window (const PANEL *);
57 extern NCURSES_EXPORT(int) hide_panel (PANEL *);
58 extern NCURSES_EXPORT(int) show_panel (PANEL *);
59 extern NCURSES_EXPORT(int) del_panel (PANEL *);
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
panel.h 34 /* $Id: panel.h,v 1.10 2006/05/27 19:49:40 tom Exp $ */
36 /* panel.h -- interface file for panels library */
43 typedef struct panel struct
46 struct panel *below;
47 struct panel *above;
49 } PANEL;
55 extern NCURSES_EXPORT(WINDOW*) panel_window (const PANEL *);
57 extern NCURSES_EXPORT(int) hide_panel (PANEL *);
58 extern NCURSES_EXPORT(int) show_panel (PANEL *);
59 extern NCURSES_EXPORT(int) del_panel (PANEL *);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
panel.h 34 /* $Id: panel.h,v 1.10 2006/05/27 19:49:40 tom Exp $ */
36 /* panel.h -- interface file for panels library */
43 typedef struct panel struct
46 struct panel *below;
47 struct panel *above;
49 } PANEL;
55 extern NCURSES_EXPORT(WINDOW*) panel_window (const PANEL *);
57 extern NCURSES_EXPORT(int) hide_panel (PANEL *);
58 extern NCURSES_EXPORT(int) show_panel (PANEL *);
59 extern NCURSES_EXPORT(int) del_panel (PANEL *);
    [all...]
  /external/webkit/Source/WebKit/mac/Panels/
WebAuthenticationPanel.h 37 IBOutlet id panel; variable
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
StatePanel.java 39 View panel = mMainView.findViewById(R.id.listStates); local
40 track = (StatePanelTrack) panel;
  /external/jmonkeyengine/engine/src/test/jme3test/awt/
TestAwtPanels.java 25 private static AwtPanel panel, panel2; field in class:TestAwtPanels
28 private static void createWindowForPanel(AwtPanel panel, int location){
31 frame.getContentPane().add(panel, BorderLayout.CENTER);
60 panel = ctx.createPanel(PaintMode.Accelerated);
61 panel.setPreferredSize(new Dimension(400, 300));
62 ctx.setInputSource(panel);
67 createWindowForPanel(panel, 300);
84 panel.attachTo(true, viewPort);
  /external/proguard/src/proguard/gui/splash/
SplashPanel.java 200 * A main method for testing the splash panel.
226 SplashPanel panel = new SplashPanel(sprite, 0.5); local
227 panel.setBackground(Color.white);
229 frame.getContentPane().add(panel);
233 panel.start();
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
StatusBarController.java 38 private final JPanel panel = new JPanel(); field in class:StatusBarController
57 panel.setLayout(layout);
58 panel.add(labelText);
59 panel.add(progress);
60 panel.add(labRuleHint);
61 panel.add(labelRuleName);
62 panel.setOpaque(false);
63 panel.setBorder(javax.swing.BorderFactory.createEmptyBorder());
80 return panel;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
CategoryPanel.java 94 CategoryTrack panel = (CategoryTrack) panelView; local
96 panel.setAdapter(mAdapter);
97 mAdapter.setContainer(panel);
99 ListView panel = (ListView) main.findViewById(R.id.listItems); local
100 panel.setAdapter(mAdapter);
101 mAdapter.setContainer(panel);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
TableView.java 45 * Setup the listener for the Table objects of <code>Panel</code>, and setup
48 * @param panel The panel to setup
49 * @param parent The parent composite of the Panel's content.
51 void setupTableFocusListener(TablePanel panel, Composite parent) {
52 panel.setTableFocusListener(new ITableFocusListener() {
  /external/chromium/chrome/browser/chromeos/notifications/
notification_browsertest.cc 86 // Waits untilt the panel's state becomes the specified state.
96 // Busy loop to wait until the view becomes visible in the panel.
141 NotificationPanel* panel = GetNotificationPanel(); local
142 NotificationPanelTester* tester = panel->GetTester();
180 NotificationPanel* panel = GetNotificationPanel(); local
181 NotificationPanelTester* tester = panel->GetTester();
191 panel->OnMouseMotion(gfx::Point(10, 10));
228 NotificationPanel* panel = GetNotificationPanel(); local
231 NotificationPanelTester* tester = panel->GetTester();
265 NotificationPanel* panel = GetNotificationPanel() local
308 NotificationPanel* panel = GetNotificationPanel(); local
375 NotificationPanel* panel = GetNotificationPanel(); local
389 NotificationPanel* panel = GetNotificationPanel(); local
418 NotificationPanel* panel = GetNotificationPanel(); local
493 NotificationPanel* panel = GetNotificationPanel(); local
526 NotificationPanel* panel = GetNotificationPanel(); local
    [all...]
  /external/chromium/chrome/browser/chromeos/panels/
panel_scroller.cc 17 struct PanelScroller::Panel {
33 Panel* panel = new Panel; local
34 panel->header = new PanelScrollerHeader(this);
35 panel->header->set_title(ASCIIToUTF16("Email"));
36 panel->container = new PanelScrollerContainer(this, new views::View());
37 panels_.push_back(panel);
39 panel = new Panel;
    [all...]
  /external/chromium/chrome/browser/ui/panels/
panel_manager.cc 11 #include "chrome/browser/ui/panels/panel.h"
15 // Invalid panel index.
18 // Minimum width and height of a panel.
22 // Default width and height of a panel.
26 // Maxmium width and height of a panel based on the factor of the working
77 Panel* PanelManager::CreatePanel(Browser* browser) {
81 Panel* panel = new Panel(browser, bounds); local
83 active_panels_.push_back(panel);
92 Panel* panel = pending_panels_.front(); local
    [all...]
  /external/jmonkeyengine/engine/src/desktop/com/jme3/system/awt/
AwtPanelsContext.java 64 public void setInputSource(AwtPanel panel){
65 if (!panels.contains(panel))
68 inputSource = panel;
69 mouseInput.setInputSource(panel);
70 keyInput.setInputSource(panel);
121 AwtPanel panel = new AwtPanel(paintMode); local
122 panels.add(panel);
123 return panel;
134 for (AwtPanel panel : panels){
135 if (panel.isActiveDrawing())
    [all...]
  /external/webkit/Source/WebCore/html/shadow/
MediaControlRootElement.cpp 79 RefPtr<MediaControlPanelElement> panel = MediaControlPanelElement::create(mediaElement); local
85 panel->appendChild(rewindButton.release(), ec, true);
91 panel->appendChild(playButton.release(), ec, true);
97 panel->appendChild(returnToRealtimeButton.release(), ec, true);
104 panel->appendChild(statusDisplay.release(), ec, true);
130 panel->appendChild(timelineContainer.release(), ec, true);
138 panel->appendChild(seekBackButton.release(), ec, true);
145 panel->appendChild(seekForwardButton.release(), ec, true);
153 panel->appendChild(toggleClosedCaptionsButton.release(), ec, true);
161 panel->appendChild(fullScreenButton.release(), ec, true)
    [all...]
  /frameworks/base/core/tests/coretests/src/com/android/internal/widget/
SizeAdaptiveLayoutTest.java 422 View panel = mSizeAdaptiveLayout.getModestyPanel(); local
424 panel.getBackground() instanceof ColorDrawable);
425 ColorDrawable panelColor = (ColorDrawable) panel.getBackground();
434 View panel = mSizeAdaptiveLayout.getModestyPanel(); local
436 panel.getBackground().getClass(), ColorDrawable.class);
437 ColorDrawable panelColor = (ColorDrawable) panel.getBackground();
445 View panel = mSizeAdaptiveLayout.getModestyPanel(); local
449 panel.getBackground() instanceof ColorDrawable);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PanelBar.java 107 // figure out which panel needs to be talked to here
109 final PanelView panel = selectPanelForTouch(event); local
110 if (panel == null) {
111 // panel is not there, so we'll eat the gesture
112 Slog.v(TAG, String.format("onTouch: no panel for touch at (%d,%d)",
117 boolean enabled = panel.isEnabled();
118 if (DEBUG) LOG("PanelBar.onTouch: state=%d ACTION_DOWN: panel %s %s", mState, panel,
121 // panel is disabled, so we'll eat the gesture
123 "onTouch: panel (%s) is disabled, ignoring touch at (%d,%d)"
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
EditorPanel.java 129 Fragment panel = getActivity().getSupportFragmentManager().findFragmentByTag( local
131 if (panel == null || panel instanceof MainPanel) {
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
comstats.h 37 unsigned long panel; member in struct:__anon26333
78 unsigned long panel; member in struct:__anon26334
111 * private port, panel and board structures. The argument required
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
comstats.h 37 unsigned long panel; member in struct:__anon27924
78 unsigned long panel; member in struct:__anon27925
111 * private port, panel and board structures. The argument required
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
comstats.h 37 unsigned long panel; member in struct:__anon29438
78 unsigned long panel; member in struct:__anon29439
111 * private port, panel and board structures. The argument required
  /external/eigen/demos/opengl/
quaternion_demo.cpp 553 QWidget* panel = new QWidget(); local
566 QButtonGroup* group = new QButtonGroup(panel);
585 QButtonGroup* group = new QButtonGroup(panel);
604 QButtonGroup* group = new QButtonGroup(panel);
620 panel->setLayout(layout);
621 return panel;
629 QDockWidget* panel = new QDockWidget("navigation", this); local
630 panel->setAllowedAreas((QFlags<Qt::DockWidgetArea>)(Qt::RightDockWidgetArea | Qt::LeftDockWidgetArea));
631 addDockWidget(Qt::RightDockWidgetArea, panel);
632 panel->setWidget(mRenderingWidget->createNavigationControlWidget())
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
Workspace.java 247 JPanel panel = new JPanel(new GridBagLayout()); local
249 panel.setBorder(new UnifiedContentBorder());
265 panel.add(devicesScroller, new GridBagConstraints(0, 0, 1, 1, 0.5, 1.0,
278 panel.add(windowsScroller, new GridBagConstraints(2, 0, 1, 1, 0.5, 1.0,
282 return panel;
824 JPanel panel = new JPanel(new BorderLayout()); local
    [all...]
  /external/proguard/src/proguard/gui/
ClassSpecificationDialog.java 155 // Create the comments panel.
165 // Create the keep option panel.
179 // Create the allow option panel.
188 // Create the access panel.
206 // Create the annotation type panel.
213 // Create the class name panel.
220 // Create the extends annotation type panel.
227 // Create the extends class name panel.
235 // Create the class member list panel.
280 // Add all panels to the main panel
    [all...]
MemberSpecificationDialog.java 153 // Create the access panel.
183 // Create the type panel.
191 // Create the annotation type panel.
198 // Create the name panel.
206 // Create the arguments panel.
251 // Add all panels to the main panel.
274 * given panel with a GridBagLayout, and returns the buttons in an array.
277 JPanel panel)
301 // Add the label and the buttons to the panel.
302 panel.add(new JLabel(labelText), labelConstraints)
    [all...]

Completed in 862 milliseconds

1 2 3