/inkscape/src/ui/widget/ |
H A D | notebook-page.h | 46 Gtk::Grid& table() { return *_table; } function in class:Inkscape::UI::Widget::NotebookPage 48 Gtk::Table& table() { return *_table; } function in class:Inkscape::UI::Widget::NotebookPage
|
H A D | preferences-widget.cpp | 22 #include <gtkmm/table.h> 583 Gtk::Grid *table = Gtk::manage(new Gtk::Grid()); local 584 table->attach(*_slider, 0, 0, 1, 1); 586 table->attach(*alignment1, 1, 0, 1, 1); 587 table->attach(_ruler, 0, 1, 1, 1); 589 table->attach(*alignment2, 1, 1, 1, 1); 591 Gtk::Table *table = Gtk::manage(new Gtk::Table()); local 592 table->attach(*_slider, 0, 1, 0, 1); 593 table->attach(*alignment1, 1, 2, 0, 1, static_cast<Gtk::AttachOptions>(0)); 594 table 665 Gtk::Grid *table = Gtk::manage(new Gtk::Grid()); local 671 Gtk::Table *table = Gtk::manage(new Gtk::Table()); local [all...] |
/inkscape/src/widgets/ |
H A D | sp-attribute-widget.h | 142 Gtk::Grid *table; member in class:SPAttributeTable 144 Gtk::Table *table; member in class:SPAttributeTable
|
H A D | spw-utilities.cpp | 26 #include <gtkmm/table.h> 37 * position in the table. 40 Gtk::Label * spw_label(Gtk::Grid *table, const gchar *label_text, int col, int row, Gtk::Widget* target) argument 42 Gtk::Label * spw_label(Gtk::Table *table, const gchar *label_text, int col, int row, Gtk::Widget* target) 72 table->attach(*label_widget, col, row, 1, 1); 74 table->attach(*label_widget, col, col+1, row, row+1, (Gtk::EXPAND | Gtk::FILL), static_cast<Gtk::AttachOptions>(0), 4, 0); 81 spw_label_old(GtkWidget *table, const gchar *label_text, int col, int row) argument 107 gtk_grid_attach(GTK_GRID(table), label_widget, col, row, 1, 1); 109 gtk_table_attach(GTK_TABLE (table), label_widget, col, col+1, row, row+1, 121 Gtk::HBox * spw_hbox(Gtk::Grid * table, in argument 170 spw_checkbutton(GtkWidget * dialog, GtkWidget * table, const gchar * label, gchar * key, int , int row, int insensitive, GCallback cb) argument 226 spw_dropdown(GtkWidget * dialog, GtkWidget * table, const gchar * label_text, gchar * key, int row, GtkWidget * selector ) argument [all...] |
H A D | stroke-style.h | 30 #include <gtkmm/table.h> 193 Gtk::Grid *table; member in class:Inkscape::StrokeStyle 197 Gtk::Table *table; member in class:Inkscape::StrokeStyle
|
/inkscape/src/extension/ |
H A D | extension.cpp | 29 # include <gtkmm/table.h> 770 Gtk::Grid * table = Gtk::manage(new Gtk::Grid()); local 772 Gtk::Table * table = Gtk::manage(new Gtk::Table()); local 775 info->add(*table); 778 add_val(_("Name:"), _(name), table, &row); local 779 add_val(_("ID:"), id, table, &row); 780 add_val(_("State:"), _state == STATE_LOADED ? _("Loaded") : _state == STATE_UNLOADED ? _("Unloaded") : _("Deactivated"), table, &row); 788 void Extension::add_val(Glib::ustring labelstr, Glib::ustring valuestr, Gtk::Grid * table, int * row) argument 790 void Extension::add_val(Glib::ustring labelstr, Glib::ustring valuestr, Gtk::Table * table, int * row) 801 table [all...] |
/inkscape/src/ui/dialog/ |
H A D | glyphs.cpp | 26 # include <gtkmm/table.h> 346 Gtk::Grid *table = new Gtk::Grid(); local 348 Gtk::Table *table = new Gtk::Table(3, 1, false); 351 _getContents()->pack_start(*Gtk::manage(table), Gtk::PACK_EXPAND_WIDGET); 364 table->attach(*Gtk::manage(Glib::wrap(fontsel)), 0, row, 3, 1); 366 table->attach(*Gtk::manage(Glib::wrap(fontsel)), 380 table->attach( *Gtk::manage(label), 0, row, 1, 1); 382 table->attach( *Gtk::manage(label), 401 table->attach( *align, 1, row, 1, 1); 403 table [all...] |
H A D | symbols.cpp | 28 # include <gtkmm/table.h> 125 Gtk::Grid *table = new Gtk::Grid(); local 127 Gtk::Table *table = new Gtk::Table(2, 4, false); 131 _getContents()->pack_start(*Gtk::manage(table), Gtk::PACK_EXPAND_WIDGET); 138 table->attach(*Gtk::manage(labelSet),0,row,1,1); 140 table->attach(*Gtk::manage(labelSet),0,1,row,row+1,Gtk::SHRINK,Gtk::SHRINK); 149 table->attach(*Gtk::manage(symbolSet),1,row,1,1); 151 table->attach(*Gtk::manage(symbolSet),1,2,row,row+1,Gtk::FILL|Gtk::EXPAND,Gtk::SHRINK); 190 table->attach(*Gtk::manage(scroller),0,row,2,1); 192 table [all...] |
H A D | align-and-distribute.cpp | 766 Gtk::Grid &table, 768 Gtk::Table &table, 772 table, dialog), 1321 guint row, guint col, Gtk::Grid &table, Geom::Dim2 orientation, bool distribute) 1324 guint row, guint col, Gtk::Table &table, Geom::Dim2 orientation, bool distribute) 1330 *this, table, orientation, distribute)); 760 ActionBaseline(const Glib::ustring &id, const Glib::ustring &tiptext, guint row, guint column, AlignAndDistribute &dialog, Gtk::Grid &table, Geom::Dim2 orientation, bool distribute) argument 1320 addBaselineButton(const Glib::ustring &id, const Glib::ustring tiptext, guint row, guint col, Gtk::Grid &table, Geom::Dim2 orientation, bool distribute) argument
|
H A D | document-properties.cpp | 59 #include <gtkmm/table.h> 220 * Helper function that attaches widgets in a 3xn table. The widgets come in an 221 * array that has two entries per table row. The two entries code for four 227 inline void attach_all(Gtk::Grid &table, Gtk::Widget *const arr[], unsigned const n, int start = 0, int docum_prop_flag = 0) argument 229 inline void attach_all(Gtk::Table &table, Gtk::Widget *const arr[], unsigned const n, int start = 0, int docum_prop_flag = 0) 239 table.attach(*arr[i], 1, r, 1, 1); 240 table.attach(*arr[i+1], 2, r, 1, 1); 242 table.attach(*arr[i], 1, 2, r, r+1, Gtk::FILL|Gtk::EXPAND, (Gtk::AttachOptions)0,0,0); 243 table.attach(*arr[i+1], 2, 3, r, r+1, Gtk::FILL|Gtk::EXPAND, (Gtk::AttachOptions)0,0,0); 265 table [all...] |
H A D | clonetiler.cpp | 180 GtkWidget *table = clonetiler_table_x_y_rand (3); local 181 gtk_box_pack_start (GTK_BOX (vb), table, FALSE, FALSE, 0); local 190 clonetiler_table_attach (table, l, 1, 2, 1); 198 clonetiler_table_attach (table, l, 0, 2, 2); 206 clonetiler_table_attach (table, l, 0, 2, 3); 212 clonetiler_table_attach (table, l, 0, 2, 4); 222 clonetiler_table_attach (table, l, 1, 3, 1); 230 clonetiler_table_attach (table, l, 0, 3, 2); 238 clonetiler_table_attach (table, l, 0, 3, 3); 245 clonetiler_table_attach (table, 331 GtkWidget *table = clonetiler_table_x_y_rand (2); local 332 gtk_box_pack_start (GTK_BOX (vb), table, FALSE, FALSE, 0); local 477 GtkWidget *table = clonetiler_table_x_y_rand (1); local 478 gtk_box_pack_start (GTK_BOX (vb), table, FALSE, FALSE, 0); local 553 GtkWidget *table = clonetiler_table_x_y_rand (1); local 554 gtk_box_pack_start (GTK_BOX (vb), table, FALSE, FALSE, 0); local 674 GtkWidget *table = clonetiler_table_x_y_rand (3); local 675 gtk_box_pack_start (GTK_BOX (vb), table, FALSE, FALSE, 0); local 815 GtkWidget *table = gtk_grid_new(); local 819 GtkWidget *table = gtk_table_new (3, 3, FALSE); local 823 gtk_container_add(GTK_CONTAINER(frame), table); local 899 GtkWidget *table = gtk_grid_new(); local 903 GtkWidget *table = gtk_table_new (4, 2, FALSE); local 908 gtk_container_add(GTK_CONTAINER(frame), table); local 948 GtkWidget *table = gtk_grid_new(); local 952 GtkWidget *table = gtk_table_new (2, 2, FALSE); local 956 gtk_container_add(GTK_CONTAINER(frame), table); local 1017 GtkWidget *table = gtk_grid_new(); local 1021 GtkWidget *table = gtk_table_new (2, 2, FALSE); local 1027 gtk_box_pack_start (GTK_BOX (mainbox), table, FALSE, FALSE, 0); local 2867 clonetiler_table_attach(GtkWidget *table, GtkWidget *widget, float align, int row, int col) argument 2883 GtkWidget *table = gtk_grid_new(); local [all...] |
/inkscape/src/util/ |
H A D | units.cpp | 131 UnitParser(UnitTable *table); 146 UnitParser::UnitParser(UnitTable *table) : argument 147 tbl(table), 360 /* UNSAFE while passing around pointers to the Unit objects in this table
|
/inkscape/src/extension/internal/filter/ |
H A D | paint.h | 479 * Effect type (enum: table or discrete, default "table") -> component (type) 498 "<_item value=\"table\">" N_("Table") "</_item>\n" 528 // TransfertComponent table values are calculated based on the effect level and inverted parameters. 565 smooth = component2 (type="table"), composite1 (in2="blur2") 587 "<_item value=\"table\">" N_("Smoothed") "</_item>\n" 856 "<param name=\"table\" gui-text=\"" N_("Transfer type:") "\" type=\"enum\">\n" 858 "<_item value=\"table\">" N_("Painting") "</_item>\n" 891 std::ostringstream table; local 900 table << ex [all...] |
/inkscape/src/display/ |
H A D | canvas-axonomgrid.cpp | 26 # include <gtkmm/table.h> 88 * Helper function that attachs widgets in a 3xn table. The widgets come in an 89 * array that has two entries per table row. The two entries code for four 98 attach_all(Gtk::Grid &table, Gtk::Widget const *const arr[], unsigned size, int start = 0) argument 100 attach_all(Gtk::Table &table, Gtk::Widget const *const arr[], unsigned size, int start = 0) 108 table.attach(const_cast<Gtk::Widget&>(*arr[i]), 1, r, 1, 1); 112 table.attach(const_cast<Gtk::Widget&>(*arr[i+1]), 2, r, 1, 1); 114 table.attach (const_cast<Gtk::Widget&>(*arr[i]), 1, 2, r, r+1, 116 table.attach (const_cast<Gtk::Widget&>(*arr[i+1]), 2, 3, r, r+1, 124 table 346 Gtk::Grid *table = Gtk::manage(new Gtk::Grid()); local [all...] |
H A D | canvas-grid.cpp | 26 # include <gtkmm/table.h> 395 * Helper function that attachs widgets in a 3xn table. The widgets come in an 396 * array that has two entries per table row. The two entries code for four 404 static inline void attach_all(Gtk::Grid &table, Gtk::Widget const *const arr[], unsigned size, int start = 0) argument 406 static inline void attach_all(Gtk::Table &table, Gtk::Widget const *const arr[], unsigned size, int start = 0) 414 table.attach(const_cast<Gtk::Widget&>(*arr[i]), 1, r, 1, 1); 418 table.attach(const_cast<Gtk::Widget&>(*arr[i+1]), 2, r, 1, 1); 420 table.attach (const_cast<Gtk::Widget&>(*arr[i]), 1, 2, r, r+1, 422 table.attach (const_cast<Gtk::Widget&>(*arr[i+1]), 2, 3, r, r+1, 430 table 688 Gtk::Grid * table = Gtk::manage( new Gtk::Grid() ); local [all...] |
/inkscape/src/libuemf/ |
H A D | uemf.c | 291 printf("table[%d]: %d\n",i,eht->table[i]); 340 static uint32_t *table=NULL; local 343 if(table)free(table); 344 table=NULL; 347 if(!table){ 348 table = (uint32_t *) malloc(sizeof(uint32_t)*(1 + U_EMR_MAX)); 349 if(!table)return(result); 353 table[ [all...] |
H A D | uwmf.c | 694 const U_RGBQUAD *ct = NULL; // DIB color table 876 \param Start Either 0x0300 or an offset into the Palette table 881 uint16_t Start, //!< Either 0x0300 or an offset into the Palette table 1126 printf("table[%d]: %d\n",i,wht->table[i]); 1166 static uint32_t *table=NULL; local 1169 if(table)free(table); 1170 table=NULL; 1173 if(!table){ [all...] |
H A D | uwmf.h | 377 #define U_DIB_PAL_INDICES 2 //!< No color table, pixels are logical palette indices. 819 uint16_t Start; //!< Either 0x0300 or an offset into the Palette table 970 Colors Array of RGBQuad Objects or uint16_t that make a color table, as determined from the DIBHeaderInfo field. 1522 uint16_t Region; //!< Index of region to fill in object table 1523 uint16_t Brush; //!< Index of brush to use in object table 1533 uint16_t Region; //!< Index of region to frame in object table 1534 uint16_t Brush; //!< Index of brush to use in frame in object table 1554 uint16_t index; //!< (usually) index of region/object in object table 1782 uint16_t cUsage; //!< See table above 2059 The various create functions need a place to put their handles, these are stored in the table belo 2068 uint32_t *table; //!< Array Buffer for constructing the WMF in memory member in struct:__anon399 [all...] |
H A D | uemf.h | 49 these WMF enumerations is by referencing the following table: 163 #define U_CT_NO 0 //!< For RGBA_to_DIB, do not use color table 164 #define U_CT_BGRA 1 //!< For RGBA_to_DIB, use color table (16 bits or less only) BGRA colors, compatible with EMF+ ARGB 165 #define U_CT_ARGB 1 //!< For RGBA_to_DIB, use color table (16 bits or less only) BGRA colors, compatible with EMF+ ARGB 873 #define U_DIB_RGB_COLORS 0 //!< color table contains colors 874 #define U_DIB_PAL_COLORS 1 //!< color table contains 16 bit indices into logical palette 875 #define U_DIB_PAL_INDICES 2 //!< no color table, pixel values are indices into logical palette 1501 #define U_PFD_TYPE_COLORINDEX 1 //!< Pixel contains an index into the color table. 2036 U_RGBQUAD bmiColors[1]; //!< Color table. 24 bit images do not use color table value 3317 uint32_t *table; //!< Array Buffer for constructing the EMF in memory member in struct:__anon224 [all...] |