Searched refs:margin (Results 1 - 25 of 40) sorted by relevance

12

/haiku-fatelf/src/documentation/docbook-xsl/slides/browser/
H A Dslides.css38 .toc-body { margin-left: 0.5in;
39 margin-right: 0.5in;
49 margin-top: 0pt;
54 margin-top: 0pt;
60 .foil-body { margin-left: 0.5in;
61 margin-right: 0.5in;
71 margin-top: 0pt;
76 margin-top: 0pt;
79 .foilgroup-body { margin-left: 0.5in;
80 margin
[all...]
/haiku-fatelf/src/libs/pdflib/progs/pdflib/
H A Dtext2pdf.c85 fprintf(stderr, "-m margin margin size in points\n");
106 float x, y, width = a4_width, height = a4_height, margin = 20; local
134 margin = atoi(optarg);
135 if (margin < 0) {
136 fprintf(stderr, "Error: bad margin %f!\n", margin);
193 x = margin;
194 y = height - margin;
198 if (y == height - margin)
[all...]
/haiku-fatelf/src/libs/print/libgutenprint/doc/gutenprint/html/
H A Ddoxygen.css17 margin: 10px 2px;
40 margin-top: 2px;
44 margin-bottom: 0px;
48 margin-bottom: 4px;
52 margin-bottom: 2px;
75 margin: 2px;
85 margin-right: 15px;
137 margin-left: -1cm;
149 margin: 4px 8px 4px 2px;
160 margin
[all...]
/haiku-fatelf/src/libs/print/libgutenprint/doc/gutenprintui2/html/
H A Ddoxygen.css17 margin: 10px 2px;
40 margin-top: 2px;
44 margin-bottom: 0px;
48 margin-bottom: 4px;
52 margin-bottom: 2px;
75 margin: 2px;
85 margin-right: 15px;
137 margin-left: -1cm;
149 margin: 4px 8px 4px 2px;
160 margin
[all...]
/haiku-fatelf/src/add-ons/print/drivers/preview/
H A DPageSetupWindow.cpp131 // re-calculate the margin from the printable rect in points
132 BRect margin = page; local
133 if (fSetupMsg->FindRect("preview:printable_rect", &margin) == B_OK) {
134 margin.top -= page.top;
135 margin.left -= page.left;
136 margin.right = page.right - margin.right;
137 margin.bottom = page.bottom - margin.bottom;
139 margin
273 BRect margin = fMarginView->Margin(); local
[all...]
/haiku-fatelf/docs/userguide/
H A DHaiku-doc.css14 margin: 0;
22 margin: 0;
79 margin: 0 auto;
107 margin: 0 auto;
113 margin-right: 40px;
129 margin: 0;
138 margin-left: 10px;
168 margin: 0 auto;
172 margin-top: 30px;
173 margin
[all...]
/haiku-fatelf/docs/welcome/
H A DHaiku-doc.css14 margin: 0;
22 margin: 0;
79 margin: 0 auto;
107 margin: 0 auto;
113 margin-right: 40px;
129 margin: 0;
138 margin-left: 10px;
168 margin: 0 auto;
172 margin-top: 30px;
173 margin
[all...]
/haiku-fatelf/src/add-ons/print/drivers/pdf/source/
H A DPageSetupWindow.cpp136 // re-calculate the margin from the printable rect in points
137 BRect margin = page; local
138 if (fSetupMsg->FindRect("printable_rect", &margin) == B_OK) {
139 margin.top -= page.top;
140 margin.left -= page.left;
141 margin.right = page.right - margin.right;
142 margin.bottom = page.bottom - margin.bottom;
144 margin
380 BRect margin = fMarginView->Margin(); local
[all...]
/haiku-fatelf/src/libs/ncurses/test/
H A Dinserts.c69 ColOf(char *buffer, int length, int margin) argument
74 for (n = 0, result = margin + 1; n < length; ++n) {
121 int margin = (2 * TABSIZE) - 1; local
151 for (col = margin + 1; col < COLS; col += TABSIZE)
154 mvwvline(work, row, margin, ACS_VLINE, limit - 2);
155 mvwvline(work, row, margin + 1, ACS_VLINE, limit - 2);
183 wmove(work, row, margin + 1);
203 col2 = margin + 1;
208 col2 = ColOf(buffer, col, margin);
222 col2 = ColOf(buffer, col, margin);
[all...]
H A Dins_wide.c78 ColOf(wchar_t *buffer, int length, int margin) argument
83 for (n = 0, result = margin + 1; n < length; ++n) {
201 int margin = (2 * TABSIZE) - 1; local
231 for (col = margin + 1; col < COLS; col += TABSIZE)
234 mvwvline(work, row, margin, ACS_VLINE, limit - 2);
235 mvwvline(work, row, margin + 1, ACS_VLINE, limit - 2);
279 wmove(work, row, margin + 1);
298 col2 = margin + 1;
303 col2 = ColOf(buffer, col, margin);
317 col2 = ColOf(buffer, col, margin);
[all...]
H A Ddemo_menus.c188 int margin = (y == MENU_Y) ? 1 : 0; local
205 if (mcols + (2 * margin + x) >= COLS)
206 mcols = COLS - (2 * margin + x);
215 menuwin = newwin(mrows + (2 * margin), mcols + (2 * margin), y, x);
218 if (margin)
221 set_menu_sub(result, derwin(menuwin, mrows, mcols, margin, margin));
/haiku-fatelf/src/libs/print/libprint/
H A DPageSetupDlg.cpp94 // margin
97 BRect margin = fJobData->GetPrintableRect(); local
99 // re-calculate the margin from the printable rect in points
100 margin.top -= paper.top;
101 margin.left -= paper.left;
102 margin.right = paper.right - margin.right;
103 margin.bottom = paper.bottom - margin.bottom;
108 margin, unit
290 BRect margin = fMarginView->Margin(); local
[all...]
H A DMarginView.cpp133 // draw margin
290 * @return rect, return margin values always in points
295 BRect margin; local
323 margin.Set(left, top, right, bottom);
325 return margin;
503 * @param brect, margin values in rect
507 MarginView::_SetMargin(BRect margin) argument
509 fMargins = margin;
/haiku-fatelf/headers/libs/print/libprint/
H A DMarginView.h35 the margin values and a popup to change the units used for the margins.
186 // margin
204 void _SetMargin(BRect margin);
/haiku-fatelf/src/bin/network/wget/build-aux/
H A Dupdate-copyright123 my $margin = 72;
218 # Format within margin.
220 my $text_margin = $margin - length($prefix);
/haiku-fatelf/src/tests/kits/interface/menu/menuworld/
H A DViewLayoutFactory.h45 // plus a specified margin on the right and bottom sides.
77 void ResizeAroundChildren(BView& view, BPoint margin);
H A DViewLayoutFactory.cpp244 void ViewLayoutFactory::ResizeAroundChildren(BView& view, BPoint margin) argument
258 fMax_x += margin.x;
259 fMax_y += margin.y;
/haiku-fatelf/src/apps/diskusage/
H A DControlsView.cpp66 // add a small margin
202 float margin = margins[index]; local
205 return BRect(x, 0.0f, x + averageWidth + margin, height);
/haiku-fatelf/src/libs/pdflib/libs/pdflib/
H A Dp_text.c884 {"margin", pdc_floatlist, PDC_OPT_NONE, 1, 2,
926 float margin[2], boxsize[2], position[2], angle, distortionlimit; local
939 margin[0] = margin[1] = (float) 0.0;
984 if (1 == pdc_get_optvalues(p->pdc, "margin", results, margin, NULL))
985 margin[1] = margin[0];
1055 elemmargin.x = margin[0];
1060 elemmargin.y = margin[
[all...]
/haiku-fatelf/src/libs/ncurses/include/
H A DCaps.osf1r5735 set_bottom_margin smgb str Zk - - ----- Set bottom margin at current line
736 set_bottom_margin_parm smgbp str Zl - - ----- Set bottom margin at line #1 or (if smgtp is not given) #2 lines from bottom
741 set_left_margin smgl str ML - - ----- set left soft margin at current column. See smgl. (ML is not in BSD termcap).
742 set_left_margin_parm smglp str Zm - - ----- Set left (right) margin at column #1
745 set_right_margin smgr str MR - - ----- set right soft margin at current column
746 set_right_margin_parm smgrp str Zn - - ----- Set right margin at column #1
748 set_top_margin smgt str Zo - - ----- Set top margin at current line
749 set_top_margin_parm smgtp str Zp - - ----- Set top (bottom) margin at row #1
H A DCaps599 set_left_margin smgl str ML - - ----- set left soft margin at current column. See smgl. (ML is not in BSD termcap).
600 set_right_margin smgr str MR - - ----- set right soft margin at current column
674 set_bottom_margin smgb str Zk - - ----- Set bottom margin at current line
675 set_bottom_margin_parm smgbp str Zl - - ----- Set bottom margin at line #1 or (if smgtp is not given) #2 lines from bottom
676 set_left_margin_parm smglp str Zm - - ----- Set left (right) margin at column #1
677 set_right_margin_parm smgrp str Zn - - ----- Set right margin at column #1
678 set_top_margin smgt str Zo - - ----- Set top margin at current line
679 set_top_margin_parm smgtp str Zp - - ----- Set top (bottom) margin at row #1
H A DCaps.aix4701 set_left_margin smgl str ML - - ----- set left soft margin at current column. See smgl. (ML is not in BSD termcap).
702 set_right_margin smgr str MR - - ----- set right soft margin at current column
776 set_bottom_margin smgb str Zk - - ----- Set bottom margin at current line
777 set_bottom_margin_parm smgbp str Zl - - ----- Set bottom margin at line #1 or (if smgtp is not given) #2 lines from bottom
778 set_left_margin_parm smglp str Zm - - ----- Set left (right) margin at column #1
779 set_right_margin_parm smgrp str Zn - - ----- Set right margin at column #1
780 set_top_margin smgt str Zo - - ----- Set top margin at current line
781 set_top_margin_parm smgtp str Zp - - ----- Set top (bottom) margin at row #1
H A DCaps.hpux11607 set_left_margin smgl str ML - - ----- set left soft margin at current column. See smgl. (ML is not in BSD termcap).
608 set_right_margin smgr str MR - - ----- set right soft margin at current column
682 set_bottom_margin smgb str Zk - - ----- Set bottom margin at current line
683 set_bottom_margin_parm smgbp str Zl - - ----- Set bottom margin at line #1 or (if smgtp is not given) #2 lines from bottom
684 set_left_margin_parm smglp str Zm - - ----- Set left (right) margin at column #1
685 set_right_margin_parm smgrp str Zn - - ----- Set right margin at column #1
686 set_top_margin smgt str Zo - - ----- Set top margin at current line
687 set_top_margin_parm smgtp str Zp - - ----- Set top (bottom) margin at row #1
/haiku-fatelf/src/libs/print/libgutenprint/src/cups/
H A Drastertoprinter.c512 fprintf(stderr, "DEBUG: Gutenprint: left margin %d\n", cups->left_trim);
518 fprintf(stderr, "DEBUG: Gutenprint: Adjusting left margin from %d to %d\n",
532 fprintf(stderr, "DEBUG: Gutenprint: right margin %d\n", cups->right_trim);
538 fprintf(stderr, "DEBUG: Gutenprint: Adjusting right margin from %d to %d\n",
552 fprintf(stderr, "DEBUG: Gutenprint: top margin %d\n", cups->top_trim);
558 fprintf(stderr, "DEBUG: Gutenprint: Adjusting top margin from %d to %d\n",
572 fprintf(stderr, "DEBUG: Gutenprint: bottom margin %d\n", cups->bottom_trim);
578 fprintf(stderr, "DEBUG: Gutenprint: Adjusting bottom margin from %d to %d\n",
1258 int margin; local
1280 margin
[all...]
/haiku-fatelf/src/libs/ncurses/
H A Ddist.mk31 # versions of 'man' on Linux leave no margin (and make it harder to sync with

Completed in 296 milliseconds

12