Searched refs:win (Results 126 - 150 of 177) sorted by relevance

12345678

/haiku-fatelf/src/libs/ncurses/test/
H A Dinserts.c38 legend(WINDOW *win, int level, Options state, char *buffer, int length) argument
58 wmove(win, 0, 0);
59 wprintw(win,
61 wprintw(win,
63 wclrtoeol(win);
64 wprintw(win, "Level %d,%s inserted %d characters <%s>", level,
H A Dxmas.c153 set_color(WINDOW *win, chtype color) argument
164 wattroff(win, A_COLOR);
165 wattron(win, COLOR_PAIR(n));
170 unset_color(WINDOW *win) argument
173 wattrset(win, COLOR_PAIR(0));
997 deer_step(WINDOW *win, int y, int x) argument
999 mvwin(win, y, x);
1000 wrefresh(win);
H A Ddemo_menus.c98 wGetchar(WINDOW *win) argument
102 while ((c = wgetch(win)) == CTRL('T')) {
115 c = wgetch(win);
/haiku-fatelf/src/libs/ncurses/form/
H A Dfrm_driver.c189 #define Set_Field_Window_Attributes(field,win) \
190 ( wbkgdset((win),(chtype)((field)->pad | (field)->back)), \
191 wattrset((win),(field)->fore) )
273 cell_base(WINDOW *win, int y, int x) argument
277 while (LEGALYX(win, y, x))
279 cchar_t *data = &(win->_line[y].text[x]);
295 cell_width(WINDOW *win, int y, int x) argument
299 if (LEGALYX(win, y, x))
301 cchar_t *data = &(win->_line[y].text[x]);
306 result = cell_width(win,
474 Buffer_To_Window(const FIELD *field, WINDOW *win) argument
515 Window_To_Buffer(WINDOW *win, FIELD *field) argument
910 Perform_Justification(FIELD *field, WINDOW *win) argument
954 Undo_Justification(FIELD *field, WINDOW *win) argument
1020 WINDOW *win; local
[all...]
H A Dform.priv.h95 ((form)->sub?(form)->sub:((form)->win?(form)->win:stdscr))
/haiku-fatelf/src/apps/cortex/addons/LoggingConsumer/
H A DNodeHarnessWin.cpp162 BWindow* win = new BWindow(BRect(250, 200, 300, 300), "Controls", local
164 win->AddChild(view);
165 win->ResizeTo(view->Bounds().Width(), view->Bounds().Height());
166 win->Show();
/haiku-fatelf/src/apps/cortex/addons/ToneProducer/
H A DNodeHarnessWin.cpp150 BWindow* win = new BWindow(BRect(250, 200, 300, 300), "Controls", local
152 win->AddChild(view);
153 win->ResizeTo(view->Bounds().Width(), view->Bounds().Height());
154 win->Show();
/haiku-fatelf/src/libs/glut/
H A DglutMenu.h72 GlutWindow *win; // pointer to my window member in class:GlutPopUp
H A Dglut_vidresize.c171 videoResizeChannel, __glutCurrentWindow->win);
/haiku-fatelf/src/servers/notification/
H A DNotificationView.h28 NotificationView(NotificationWindow* win,
H A DAppGroupView.cpp29 AppGroupView::AppGroupView(NotificationWindow* win, const char* label) argument
33 fParent(win),
/haiku-fatelf/src/apps/mail/
H A DComboBox.cpp407 BWindow *win = cb->Window(); local
415 if (win->Lock())
438 win->Unlock();
445 win->PostMessage(msg, text);
1132 BWindow *win = Window(); local
1133 bool gotLock = (win && win->Lock());
1134 if (!win || gotLock) {
1171 win->Unlock();
1183 BWindow *win local
1721 ComboBoxWindow *win = new ComboBoxWindow(this); local
[all...]
/haiku-fatelf/src/libs/ncurses/menu/
H A Dm_global.c494 WINDOW *win; local
503 win = Get_Menu_Window(menu);
505 maxy = getmaxy(win);
506 maxx = getmaxx(win);
513 copywin(menu->sub, win, 0, 0, 0, 0, maxy - 1, maxx - 1, 0);
/haiku-fatelf/src/bin/pcmcia-cs/
H A Dcardctl.c272 win_req_t *win = &arg1.win_info.window; local
280 req->CardOffset, req->CardOffset+win->Size-1,
281 win->Base);
282 if (win->Attributes & WIN_MEMORY_TYPE_AM)
284 if (!(win->Attributes & WIN_ENABLE))
286 if (win->Attributes & WIN_USE_WAIT)
288 switch (win->Attributes & WIN_DATA_WIDTH) {
H A Ddump_cis.c335 printf(" 0x%4.4x-0x%4.4x", io->win[i].base,
336 io->win[i].base+io->win[i].len-1);
362 printf(" 0x%4.4x-0x%4.4x @ 0x%4.4x", mem->win[i].card_addr,
363 mem->win[i].card_addr + mem->win[i].len-1,
364 mem->win[i].host_addr);
/haiku-fatelf/headers/os/opengl/GL/
H A Dglut.h566 GLUTAPI int GLUTAPIENTRY glutCreateSubWindow(int win, int x, int y, int width, int height);
567 GLUTAPI void GLUTAPIENTRY glutDestroyWindow(int win);
570 GLUTAPI void GLUTAPIENTRY glutPostWindowRedisplay(int win);
574 GLUTAPI void GLUTAPIENTRY glutSetWindow(int win);
597 GLUTAPI void GLUTAPIENTRY glutPostWindowOverlayRedisplay(int win);
661 GLUTAPI void GLUTAPIENTRY glutCopyColormap(int win);
/haiku-fatelf/src/add-ons/tracker/zipomatic/
H A DZipOMaticWindow.cpp327 BWindow* win = static_cast<BWindow*>(fWindowList.ItemAt(i)); local
328 if (win == NULL)
331 ZippoWindow* window = dynamic_cast<ZippoWindow*>(win);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/MyNetwork/
H A DMyNetApp.cpp142 FileShareWindow(BWindow *win, BRect frame, const char *name, uint32 ipAddr) : argument
145 parent = win;
592 InetHostPanel(BRect frame, BWindow *win) : argument
595 parent = win;
787 FileShareWindow *win = new FileShareWindow(this, frame, item->GetItemText(), item->GetItemData()); local
803 InetHostPanel *win = new InetHostPanel(frame, this); local
804 wait_for_thread(win->Thread(), &exitStatus);
825 FileShareWindow *win = new FileShareWindow(this, frame, name, (uint32) inet_addr(buffer)); local
906 MyNetWindow *win = new MyNetWindow(frame); local
/haiku-fatelf/src/libs/ncurses/ncurses/tty/
H A Dtty_update.c101 static inline NCURSES_CH_T ClrBlank(WINDOW *win);
577 #define MARK_NOCHANGE(win,row) \
578 win->_line[row].firstchar = _NOCHANGE; \
579 win->_line[row].lastchar = _NOCHANGE; \
580 if_USE_SCROLL_HINTS(win->_line[row].oldindex = row)
872 * ClrBlank(win)
882 #define BCE_BKGD(win) (((win) == curscr ? stdscr : (win))->_nc_bkgd)
885 ClrBlank(WINDOW *win) argument
[all...]
/haiku-fatelf/src/libs/pdflib/libs/pdflib/
H A Dp_truetype.c381 TT_ASSERT(p, ttf, ttf->tab_cmap->win != (tt_cmap4 *) 0);
383 cm4 = ttf->tab_cmap->win;
490 tp->win = (tt_cmap4 *) 0;
536 TT_IOCHECK(p, ttf, tp->win == (tt_cmap4 *) 0);
537 tp->win = (tt_cmap4 *) pdc_malloc(p->pdc, sizeof (tt_cmap4), fn);
538 tt_get_cmap4(p, ttf, tp->win);
539 if (tp->win->segCountX2)
540 tp->win->encodingID = encodingID;
543 pdc_free(p->pdc, tp->win);
544 tp->win
[all...]
/haiku-fatelf/src/libs/ncurses/progs/
H A Dtset.c1114 struct winsize win; local
1214 (void) ioctl(STDERR_FILENO, TIOCGWINSZ, &win);
1215 if (win.ws_row == 0 && win.ws_col == 0 &&
1217 win.ws_row = tlines;
1218 win.ws_col = tcolumns;
1219 (void) ioctl(STDERR_FILENO, TIOCSWINSZ, &win);
/haiku-fatelf/src/preferences/printers/
H A DPrintersWindow.cpp240 BWindow* win = new TestPageWindow(job, printer); local
241 win->Show();
242 win->PostMessage(kMsgPrintTestPage);
/haiku-fatelf/src/tests/kits/opengl/demos/gears/
H A Dgears.c29 static GLint win = 0; variable
176 glutDestroyWindow(win);
395 win = glutCreateWindow("Gears");
/haiku-fatelf/src/tests/servers/app/newClipping/
H A Dmain.cpp479 clsMainWindow *win = new clsMainWindow("clipping"); local
480 win->Show();
482 win->test2();
/haiku-fatelf/headers/os/drivers/pcmcia/
H A Dds.h140 window_handle_t win; member in struct:dev_link_t

Completed in 301 milliseconds

12345678