Searched refs:base_width (Results 1 - 25 of 26) sorted by relevance

12

/macosx-10.10/less-25/less/
H A Dscrsize.c71 win_attributes.width -= hints.base_width;
/macosx-10.10/vim-55/src/proto/
H A Dgui_riscos.pro14 void gui_mch_set_shellsize __ARGS((int width, int height, int min_width, int min_height, int base_width, int base_height));
H A Dgui_mac.pro28 void gui_mch_set_winsize __ARGS((int width, int height, int min_width, int min_height, int base_width, int base_height));
31 void gui_mch_set_shellsize __ARGS((int width, int height, int min_width, int min_height, int base_width, int base_height, int direction));
H A Dgui_gtk_x11.pro23 void gui_mch_set_shellsize __ARGS((int width, int height, int min_width, int min_height, int base_width, int base_height, int direction));
H A Dgui_photon.pro14 void gui_mch_set_shellsize __ARGS((int width, int height, int min_width, int min_height, int base_width, int base_height, int direction));
H A Dgui_x11.pro14 void gui_mch_set_shellsize __ARGS((int width, int height, int min_width, int min_height, int base_width, int base_height, int direction));
H A Dgui_w16.pro62 void gui_mch_set_shellsize __ARGS((int width, int height, int min_width, int min_height, int base_width, int base_height, int direction));
H A Dgui_w32.pro64 void gui_mch_set_shellsize __ARGS((int width, int height, int min_width, int min_height, int base_width, int base_height, int direction));
/macosx-10.10/emacs-93/emacs/src/
H A Dmacgui.h314 int base_width, base_height; /* added by ICCCM version 1 */ member in struct:__anon8760
H A Dwidget.c502 int base_width; local
519 base_width = (wmshell->core.width - ew->core.width
530 XtNbaseWidth, (XtArgVal) base_width,
534 XtNminWidth, (XtArgVal) (base_width + min_cols * cw),
H A Dgtkutil.c910 int base_width, base_height;
931 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
937 size_hints.base_width = base_width;
939 size_hints.min_width = base_width + min_cols * size_hints.width_inc;
907 int base_width, base_height; local
H A Dxterm.c9497 int base_width, base_height;
9500 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
9511 We use the base_width and base_height members if we have
9517 size_hints.base_width = base_width;
9519 size_hints.min_width = base_width + min_cols * size_hints.width_inc;
9522 size_hints.min_width = base_width;
9549 size_hints.base_width = hints.base_width;
9464 int base_width, base_height; local
H A Dmacterm.c6706 int base_width, base_height, width_inc, height_inc;
6710 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
6727 size_hints->min_width = base_width + min_cols * width_inc;
6729 size_hints->base_width = base_width;
9885 width = size_hints->base_width
9886 + (int) ((width - size_hints->base_width)
6679 int base_width, base_height, width_inc, height_inc; local
/macosx-10.10/vim-55/src/
H A Dgui.c1213 int base_width; local
1215 base_width = 2 * gui.border_offset;
1217 base_width += gui.scrollbar_width;
1219 base_width += gui.scrollbar_width;
1220 return base_width;
1378 int base_width; local
1405 base_width = gui_get_base_width();
1415 Columns = (width - base_width + gui.char_width - 1) / gui.char_width;
1421 width = Columns * gui.char_width + base_width;
1430 Columns = (screen_w - base_width) / gu
[all...]
H A Dgui_w48.c2883 int base_width, base_height; local
2885 base_width = gui_get_base_width()
2894 *valid_w = base_width +
2895 ((w - base_width) / gui.char_width) * gui.char_width;
H A Dgui_riscos.c695 gui_mch_set_shellsize(width, height, min_width, min_height, base_width, base_height, direction)
700 int base_width; /* Space for scroll bars, etc */
713 s_width -= base_width;
H A Dgui_x11.c1792 base_width, base_height, direction)
1797 int base_width;
1808 XtNbaseWidth, base_width,
H A Dgui_w16.c491 int min_width, int min_height, int base_width, int base_height,
490 gui_mch_set_shellsize(int width, int height, int min_width, int min_height, int base_width, int base_height, int direction) argument
H A Dgui_gtk_x11.c2701 geometry.base_width = width;
3910 int base_width UNUSED, int base_height UNUSED,
H A Dgui_photon.c1668 int min_width, int min_height, int base_width, int base_height,
1667 gui_mch_set_shellsize(int width, int height, int min_width, int min_height, int base_width, int base_height, int direction) argument
H A Dgui_mac.c3328 int base_width,
3323 gui_mch_set_shellsize( int width, int height, int min_width, int min_height, int base_width, int base_height, int direction) argument
/macosx-10.10/tcl-105/tk/tk/xlib/X11/
H A DXutil.h50 * new version containing base_width, base_height, and win_gravity fields;
64 int base_width, base_height; /* added by ICCCM version 1 */ member in struct:__anon13746
/macosx-10.10/tcl-105/tk84/tk/xlib/X11/
H A DXutil.h50 * new version containing base_width, base_height, and win_gravity fields;
64 int base_width, base_height; /* added by ICCCM version 1 */ member in struct:__anon13925
/macosx-10.10/tcl-105/tk/tk/unix/
H A DtkUnixWm.c4801 hintsPtr->base_width = winPtr->reqWidth
4803 if (hintsPtr->base_width < 0) {
4804 hintsPtr->base_width = 0;
4811 hintsPtr->min_width = hintsPtr->base_width
4815 hintsPtr->max_width = hintsPtr->base_width
4824 hintsPtr->base_width = 0;
/macosx-10.10/tcl-105/tk84/tk/unix/
H A DtkUnixWm.c4454 hintsPtr->base_width = winPtr->reqWidth
4456 if (hintsPtr->base_width < 0) {
4457 hintsPtr->base_width = 0;
4464 hintsPtr->min_width = hintsPtr->base_width
4468 hintsPtr->max_width = hintsPtr->base_width
4477 hintsPtr->base_width = 0;

Completed in 528 milliseconds

12