Searched refs:window (Results 176 - 200 of 413) sorted by relevance

1234567891011>>

/haiku-fatelf/src/apps/people/
H A DPeopleApp.h49 void _AddAttributes(PersonWindow* window) const;
/haiku-fatelf/src/libs/pdflib/libs/flate/
H A Dinffast.c25 /* Called with number of bytes left to write in window at least 258
43 Bytef *q; /* output window write pointer */
44 uInt m; /* bytes to end of window or read pointer */
99 if (r < s->window) /* wrap if needed */
102 r += s->end - s->window; /* force pointer in window */
103 } while (r < s->window); /* covers invalid distances */
111 r = s->window;
H A Dinfutil.c24 /* copy as much as possible from the sliding window to the output area */
38 /* compute number of bytes to copy as far as end of window */
51 /* copy as far as end of window */
56 /* see if more to copy at beginning of window */
60 q = s->window;
62 s->write = s->window;
/haiku-fatelf/src/libs/zlib/
H A Dinflate.h91 /* sliding window */
92 unsigned wbits; /* log base 2 of requested window size */
93 unsigned wsize; /* window size or zero if not using window */
94 unsigned whave; /* valid bytes in the window */
95 unsigned wnext; /* window write index */
96 unsigned char FAR *window; /* allocated sliding window, if needed */ member in struct:inflate_state
H A Dinfutil.c22 /* copy as much as possible from the sliding window to the output area */
36 /* compute number of bytes to copy as far as end of window */
49 /* copy as far as end of window */
54 /* see if more to copy at beginning of window */
58 q = s->window;
60 s->write = s->window;
/haiku-fatelf/src/preferences/media/
H A DMediaListItem.h37 virtual void AlterWindow(MediaWindow* window) = 0;
91 virtual void AlterWindow(MediaWindow* window);
132 virtual void AlterWindow(MediaWindow* window);
164 virtual void AlterWindow(MediaWindow* window);
/haiku-fatelf/src/servers/app/decorator/
H A DWindowBehaviour.h40 /*! The window is going to be moved by delta. This hook should be used to
43 virtual bool AlterDeltaForSnap(Window* window, BPoint& delta,
H A DDefaultWindowBehaviour.h31 DefaultWindowBehaviour(Window* window);
44 virtual bool AlterDeltaForSnap(Window* window, BPoint& delta,
/haiku-fatelf/src/tests/apps/installer/
H A DCopyEngine.h21 CopyEngine(InstallerWindow *window);
H A DCopyEngine.cpp27 CopyEngine::CopyEngine(InstallerWindow *window) argument
29 fWindow(window),
/haiku-fatelf/src/tests/servers/app/following/
H A Dmain.cpp126 BWindow* window = new BWindow(frame, name, local
130 BView* view = new TestView(window->Bounds(), "test 1", B_FOLLOW_ALL,
133 window->AddChild(view);
148 window->Show();
/haiku-fatelf/src/tests/servers/app/shape_test/
H A Dmain.cpp169 BWindow* window = new BWindow(BRect(50.0, 50.0, 300.0, 250.0), local
173 BView* view = new TestView(window->Bounds(), "test", B_FOLLOW_ALL,
175 window->AddChild(view);
177 window->Show();
/haiku-fatelf/src/kits/tracker/
H A DOverrideAlert.cpp35 // defines the status area drawn in the bottom left corner of a Tracker window
102 // This positions the alert window like a normal alert, put
103 // places it on top of the calling window if possible.
105 BWindow* window local
109 screenFrame = BScreen(window).Frame();
111 if (window) {
112 // If we found a window associated with this calling thread,
113 // place alert over that window so that the first button is
116 // the underlying window will still have focus.
118 desirableRect = window
[all...]
/haiku-fatelf/src/apps/drivesetup/
H A DAbstractParametersPanel.h27 AbstractParametersPanel(BWindow* window);
H A DCreateParametersPanel.h25 CreateParametersPanel(BWindow* window,
/haiku-fatelf/src/add-ons/accelerants/radeon/
H A Doverlay_management.c269 oc->window.h_alignment = 0;
270 oc->window.v_alignment = 0;
271 oc->window.width_alignment = 0;
272 oc->window.height_alignment = 0;
273 oc->window.width.min = 2;
274 oc->window.width.max = dm->virtual_width;
275 oc->window.height.min = 2;
276 oc->window.height.max = dm->virtual_height;
/haiku-fatelf/src/apps/launchbox/
H A DNamePanel.cpp26 NamePanel::NamePanel(const char* label, const char* text, BWindow* window, argument
33 fWindow(window),
/haiku-fatelf/src/libs/print/libprint/
H A DAboutBox.cpp107 AboutBoxWindow *window = new AboutBoxWindow(rect, driver_name, version, copyright); local
108 window->Show();
/haiku-fatelf/src/tests/add-ons/print/ppd/test/
H A DPPDConfigApplication.cpp46 // make window visible
86 // set up a rectangle and instantiate a new window
88 window = NULL;
89 window = new AppWindow(aRect);
/haiku-fatelf/src/tests/kits/interface/
H A DMenuTriggerTest.cpp95 Window *window = new Window(); local
96 window->Show();
H A DStatusBarTest.cpp110 BWindow *window = new Window(); local
111 window->Show();
/haiku-fatelf/src/tests/kits/net/DialUpPreflet/
H A DInterfaceUtils.cpp20 center_on_screen(BRect rect, BWindow *window = NULL)
22 BRect screenFrame = BScreen(window).Frame();
/haiku-fatelf/src/tests/kits/net/preflet/DialUpAddOn/
H A DInterfaceUtils.cpp36 center_on_screen(BRect rect, BWindow *window) argument
38 BRect screenFrame = (BScreen(window).Frame());
/haiku-fatelf/src/tests/libs/alm/
H A DAreas.cpp23 // create a new BALMLayout and use it for this window
74 AreasWindow* window = new AreasWindow(frameRect); local
75 window->Show();
H A DComplexButtons.cpp88 ComplexButtonsWindow* window = new ComplexButtonsWindow(frameRect); local
89 window->Show();

Completed in 218 milliseconds

1234567891011>>