Searched refs:window (Results 276 - 300 of 413) sorted by relevance

<<11121314151617

/haiku-fatelf/src/apps/switcher/
H A DWindowsView.cpp78 BMessenger window;
79 BMessenger::Private(window).SetTo(info->team, info->client_port,
81 window.SendMessage(B_QUIT_REQUESTED);
/haiku-fatelf/src/apps/webpositive/
H A DAuthenticationPanel.cpp196 // Start AuthenticationPanel window thread
199 // Let the window jitter, if the previous password was invalid
204 // Get the originating window, if it exists, to let it redraw itself.
205 BWindow* window = dynamic_cast<BWindow*> local
207 if (window) {
220 window->UpdateIfNeeded();
223 // No window to update, so just hang out until we're done.
/haiku-fatelf/src/documentation/docbook-xsl/slides/browser/
H A DxbDebug.js38 the debug window reference. This can cause problems with
68 this.debugwindow = window.open('about:blank', 'DEBUGWINDOW', 'height=400,width=600,resizable=yes,scrollbars=yes');
70 window.focus();
101 window.onunload = function () { xbDEBUG.close(); }
/haiku-fatelf/src/kits/tracker/
H A DSelectionWindow.cpp57 SelectionWindow::SelectionWindow(BContainerWindow* window) argument
63 fParentWindow(window)
65 if (window->Feel() & kPrivateDesktopWindowFeel) {
66 // The window will not show up if we have
67 // B_FLOATING_SUBSET_WINDOW_FEEL and use it with the desktop window
206 // window when the message arrives.
244 // Position the window centered around the mouse...
H A DDeskWindow.cpp69 WatchAddOnDir(directory_which dirName, BDeskWindow* window) argument
77 TTracker::WatchNode(&nodeRef, B_WATCH_DIRECTORY, window);
83 BDeskWindow* window; member in struct:AddOneShortcutParams
99 params->window->AddShortcut(shortcut, B_OPTION_KEY | B_COMMAND_KEY,
156 // Set the size of the screen before calling the container window's
157 // Init() because it will add volume poses to this window and
206 params.window = this;
/haiku-fatelf/src/libs/pdflib/libs/flate/
H A Dinfcodes.c24 COPY, /* o: copying bytes in window, waiting for space */
94 Bytef *q; /* output window write pointer */
95 uInt m; /* bytes to end of window or read pointer */
199 case COPY: /* o: copying bytes in window, waiting for space */
201 while (f < s->window) /* modulo window size-"while" instead */
202 f += s->end - s->window; /* of "if" handles invalid distances */
208 f = s->window;
/haiku-fatelf/src/preferences/filetypes/
H A DFileTypesWindow.cpp735 BWindow* window local
737 window->Show();
747 BWindow* window = new ExtensionWindow(this, fCurrentType, NULL); local
748 window->Show();
864 BWindow* window = new AttributeWindow(this, fCurrentType, local
866 window->Show();
876 BWindow* window = new AttributeWindow(this, fCurrentType, NULL); local
877 window->Show();
978 FileTypesWindow::PlaceSubWindow(BWindow* window) argument
980 window
[all...]
/haiku-fatelf/src/tests/kits/interface/look/
H A DLook.cpp261 BWindow* window = new Window(BRect(50, 50, 100, 100), local
266 window->SetLayout(new BGroupLayout(B_HORIZONTAL));
365 BLayoutBuilder::Group<>(window, B_VERTICAL, 0)
376 window->SetDefaultButton(okButton);
378 window->Show();
/haiku-fatelf/src/tests/servers/app/newClipping/
H A Dmain.cpp92 WinBorder* window = new WinBorder(frame, name, B_FOLLOW_NONE, B_FULL_UPDATE_ON_RESIZE, local
94 topLayer->AddLayer(window);
174 window->AddLayer(layer1);
178 window->GetWantedRegion(temp);
179 topLayer->RebuildVisibleRegions(temp, window);
/haiku-fatelf/src/kits/interface/
H A DButton.cpp73 // NOTE: Default button state will be synchronized with the window
419 BWindow *window = Window(); local
421 if (window)
422 oldDefault = window->DefaultButton();
439 if (window && oldDefault != this)
440 window->SetDefaultButton(this);
454 if (window && oldDefault == this)
455 window->SetDefaultButton(NULL);
H A DToolTipManager.cpp171 resize the window if necessary.
287 // Change window frame
400 BWindow* window = new BPrivate::ToolTipWindow(tip, where, owner); local
401 window->Show();
403 fWindow = BMessenger(window);
/haiku-fatelf/src/preferences/media/
H A DMediaWindow.cpp383 // Start the window
635 MediaWindow* window = (MediaWindow*)data; local
636 window->fAlert = new MediaAlert(BRect(0, 0, 300, 60),
640 window->fAlert->Show();
643 window->fAlert);
646 BAutolock locker(window->fAlert);
648 window->fAlert->TextView()->SetText(
653 return window->PostMessage(ML_INIT_MEDIA);
/haiku-fatelf/src/apps/activitymonitor/
H A DActivityWindow.cpp45 if (settings.FindRect("window frame", &frame) == B_OK) {
188 // Just bring the window to front (via scripting)
195 // Open new settings window
196 BWindow* window = new SettingsWindow(this); local
197 window->Show();
199 fSettingsWindow = window;
299 status = settings.AddRect("window frame", Frame());
/haiku-fatelf/src/bin/gzip/
H A Dgzip.h65 * deflate: prev+head window d_buf l_buf outbuf
67 * inflate: window inbuf
68 * unpack: window inbuf prefix_len
69 * unlzh: left+right window c_table inbuf c_len
70 * For compression, input is done in window[]. For decompression, output
71 * is done in window except for unlzw.
118 EXTERN(uch, window); /* Sliding window and suffix table (unlzw) */
119 #define tab_suffix window
176 # define WSIZE 0x8000 /* window siz
[all...]
/haiku-fatelf/src/apps/deskbar/
H A DTimeView.cpp371 CalendarMenuWindow* window = new CalendarMenuWindow(where); local
372 fCalendarWindow = BMessenger(window);
374 window->Show();
/haiku-fatelf/headers/os/interface/
H A DMenuItem.h66 void Install(BWindow* window);
H A DScreen.h26 BScreen(BWindow* window);
/haiku-fatelf/headers/private/interface/
H A DPrivateScreen.h35 static BPrivateScreen* Get(BWindow* window);
/haiku-fatelf/src/apps/mail/
H A DEnclosures.cpp248 TMailWindow *window = dynamic_cast<TMailWindow *>(Window()); local
249 if (window && window->Mail())
250 window->Mail()->RemoveComponent(item->Component());
/haiku-fatelf/src/tests/servers/app/newerClipping/
H A DViewLayer.h33 void AttachedToWindow(WindowLayer* window);
H A Dmain.cpp366 WindowLayer* window = new WindowLayer(frame, name, local
452 window->AddChild(layer1);
455 window->Run();
458 message.AddPointer("window", (void*)window);
/haiku-fatelf/src/tests/servers/app/painter/
H A Dmain.cpp394 BWindow* window = new BWindow(BRect(50.0, 50.0, 50.0 + bounds.Width(), 50.0 + bounds.Height() * 2 + 1), "Painter Test", local
398 window->AddChild(painterView);
399 window->AddChild(bViewView);
401 window->Show();
/haiku-fatelf/src/add-ons/accelerants/ati/
H A Daccelerant.h190 bool Mach64_DisplayOverlay(const overlay_window* window,
213 bool Rage128_DisplayOverlay(const overlay_window* window,
/haiku-fatelf/src/add-ons/screen_savers/ifs/
H A DIFSSaver.cpp125 if (BWindow* window = view->Window())
126 window->AddHandler(this);
/haiku-fatelf/src/apps/icon-o-matic/generic/gui/
H A DIconOptionsControl.cpp251 if (BWindow* window = Window()) {
252 window->PostMessage(M_RECALCULATE_SIZE);

Completed in 214 milliseconds

<<11121314151617