Home
last modified time | relevance | path

Searched refs:columnFormat (Results 1 – 25 of 75) sorted by relevance

123

/dports/editors/calligra/calligra-3.2.1/libs/text/styles/tests/
H A DTestTableFormats.cpp12 KoTableColumnFormat columnFormat; in testTableColumnFormat() local
14 columnFormat.setBreakAfter(true); in testTableColumnFormat()
15 QCOMPARE(columnFormat.breakAfter(), true); in testTableColumnFormat()
16 columnFormat.setBreakAfter(false); in testTableColumnFormat()
17 QCOMPARE(columnFormat.breakAfter(), false); in testTableColumnFormat()
19 columnFormat.setBreakBefore(true); in testTableColumnFormat()
21 columnFormat.setBreakBefore(false); in testTableColumnFormat()
24 columnFormat.setColumnWidth(5.0); in testTableColumnFormat()
25 QCOMPARE(columnFormat.columnWidth(), 5.0); in testTableColumnFormat()
26 columnFormat.setColumnWidth(10.0); in testTableColumnFormat()
[all …]
/dports/mail/phplist/phplist-3.6.6/public_html/lists/admin/actions/
H A Ddomainstats.php51 $columnFormat = '<strong>%s</strong> (%s%%)'; variable
62 sprintf($columnFormat, number_format($row['domain_confirmed']), $perc)
70 sprintf($columnFormat, number_format($row['domain_unconfirmed']), $percentUnconfirmed)
78 sprintf($columnFormat, number_format($row['domain_blacklisted']), $percentBlacklisted)
86 sprintf($columnFormat, number_format($row['domain_total']), $percentTotal)
143 sprintf($columnFormat, number_format($row['domain_confirmed']), $percentConfirmed)
151 sprintf($columnFormat, number_format($row['domain_unconfirmed']), $percentUnconfirmed)
158 sprintf($columnFormat, number_format($row['domain_blacklisted']), $percentBlacklisted)
167 sprintf($columnFormat, number_format($row['domain_total']), $percentTotal)
201 sprintf($columnFormat, number_format($row['num']), $percentTotal)
/dports/editors/calligra/calligra-3.2.1/sheets/commands/
H A DDeleteCommand.cpp74 const ColumnFormat* columnFormat = m_sheet->columnFormat(col); in process() local
75 if (m_firstrun && !columnFormat->isDefault()) { in process()
76 ColumnFormat* oldColumnFormat = new ColumnFormat(*columnFormat); in process()
129 foreach(ColumnFormat* columnFormat, m_columnFormats) { in mainProcessing()
130 m_sheet->insertColumnFormat(new ColumnFormat(*columnFormat)); in mainProcessing()
H A DPasteCommand.cpp468 ColumnFormat columnFormat; in processXmlData() local
469 columnFormat.setSheet(sheet); in processXmlData()
475 if (columnFormat.load(c, xOffset, m_pasteMode)) { in processXmlData()
476 const int col = columnFormat.column(); in processXmlData()
482 resize->setSize(columnFormat.width()); in processXmlData()
487 hideShow->setReverse(!columnFormat.isHidden()); in processXmlData()
492 pageBreak->setReverse(!columnFormat.hasPageBreak()); in processXmlData()
H A DRowColumnManipulators.cpp169 if (!m_sheet->columnFormat(col)->isHidden()) in preProcessing()
177 if (m_sheet->columnFormat(col)->isHidden()) { in preProcessing()
358 m_oldWidths[col] = m_sheet->columnFormat(col)->width(); in preProcessing()
386 m_oldWidths[col] = m_sheet->columnFormat(col)->width(); in preProcessing()
414 m_oldWidths[col] = m_sheet->columnFormat(col)->width(); in preProcessing()
536 double cw = cell.sheet()->columnFormat(cell.column() + col)->width(); in adjustColumnHelper()
592 void InsertDeleteColumnManipulator::setTemplate(const ColumnFormat &columnFormat) in setTemplate() argument
595 m_template = new ColumnFormat(columnFormat); in setTemplate()
H A DRowColumnManipulators.h167 void setTemplate(const ColumnFormat &columnFormat);
H A DApplyFilterCommand.cpp62 m_undoData[i] = sheet->columnFormat(i)->isFiltered(); in redo()
/dports/biology/gatk/gatk-4.2.0.0/src/main/java/org/broadinstitute/hellbender/utils/report/
H A DGATKReportColumn.java17 private GATKReportColumnFormat columnFormat; field in GATKReportColumn
48 if (columnFormat != null) in getColumnFormat()
49 return columnFormat; in getColumnFormat()
51 columnFormat = new GATKReportColumnFormat(maxWidth, alignment); in getColumnFormat()
52 return columnFormat; in getColumnFormat()
/dports/editors/calligra/calligra-3.2.1/sheets/
H A DSheetPrint_p.cpp78 double x = m_pSheet->columnFormat(col)->width(); in calculateHorizontalPageParameters()
96 if (x > printWidth || m_pSheet->columnFormat(col)->hasPageBreak()) { in calculateHorizontalPageParameters()
99 m_lnewPageListX.last().setSize(x - m_pSheet->columnFormat(col)->width()); in calculateHorizontalPageParameters()
105 x = m_pSheet->columnFormat(col)->width(); in calculateHorizontalPageParameters()
113 x += m_pSheet->columnFormat(col)->width(); in calculateHorizontalPageParameters()
120 if (x > printWidth || m_pSheet->columnFormat(col)->hasPageBreak()) { in calculateHorizontalPageParameters()
123 m_lnewPageListX.last().setSize(x - m_pSheet->columnFormat(col)->width()); in calculateHorizontalPageParameters()
132 x += m_pSheet->columnFormat(col)->width(); in calculateHorizontalPageParameters()
370 m_dPrintRepeatColumnsWidth += m_pSheet->columnFormat(i)->width(); in updateRepeatedColumnsWidth()
H A DCluster.cpp330 ColumnFormat* columnFormat = new ColumnFormat(*other.m_cluster[i][j]); in operator =() local
331 columnFormat->setNext(0); in operator =()
332 columnFormat->setPrevious(0); in operator =()
333 insertElement(columnFormat, columnFormat->column()); in operator =()
H A DPageManager.cpp91 width += sheet->columnFormat(col)->visibleWidth(); in layoutPages()
94 … if (width + sheet->columnFormat(col + 1)->visibleWidth() <= size(pageNumber).width()) in layoutPages()
140 width += sheet->columnFormat(col)->visibleWidth(); in layoutPages()
145 … else if (width + sheet->columnFormat(col + 1)->visibleWidth() <= size(pageNumber).width()) in layoutPages()
H A DSheet.cpp566 double x = columnFormat(col)->visibleWidth(); in leftColumn()
569 x += columnFormat(++col)->visibleWidth(); in leftColumn()
577 double x = columnFormat(col)->visibleWidth(); in rightColumn()
579 x += columnFormat(++col)->visibleWidth(); in rightColumn()
626 x += columnFormat(col)->visibleWidth(); in columnPosition()
1224 ColumnFormat* columnFormat = firstCol(); in saveXML() local
1226 while (columnFormat || styleIndex) { in saveXML()
1227 if (columnFormat && (!styleIndex || columnFormat->column() <= styleIndex)) { in saveXML()
1234 columnFormat = columnFormat->next(); in saveXML()
1237 columnFormat.setSheet(this); in saveXML()
[all …]
H A DSheet.h369 const ColumnFormat* columnFormat(int _column) const;
660 void insertColumnFormat(ColumnFormat* columnFormat);
/dports/editors/calligra/calligra-3.2.1/sheets/part/
H A DHeaders.cpp573 double w = sheet->columnFormat(tmpCol)->width(); in mousePress()
606 double w = sheet->columnFormat(col)->width(); in mousePress()
749 if (sheet->columnFormat(i)->isHidden()) { in mouseRelease()
849 const ColumnFormat *cl = sheet->columnFormat(col + 1); in mouseMove()
859 const ColumnFormat *cl = sheet->columnFormat(col + 1); in mouseMove()
877 double w = sheet->columnFormat(tmpCol)->visibleWidth(); in mouseMove()
895 double w = sheet->columnFormat(tmpCol)->visibleWidth(); in mouseMove()
991 xPos -= sheet->columnFormat(x)->width(); in paint()
1000 const ColumnFormat *columnFormat = sheet->columnFormat(x); in paint() local
1001 if (columnFormat->isHiddenOrFiltered()) { in paint()
[all …]
/dports/science/scidavis/scidavis-2.4.0/test/pythonTests/
H A Dcolumn_class.py140 assert c4.columnFormat() == "yyyy-MM-dd hh:mm:ss.zzz"
142 assert t.columnFormat(3) == c4.columnFormat()
164 assert c5.columnFormat() == "MMMM"
177 assert c6.columnFormat() == "dddd"
/dports/editors/calligra/calligra-3.2.1/sheets/ui/
H A DSheetView.cpp125 coordinate.setX(coordinate.x() + sheet->columnFormat(c)->width()); in cellToProcess()
128 coordinate.setX(coordinate.x() - sheet->columnFormat(c)->width()); in cellToProcess()
169 coordinate.setX(coordinate.x() + sheet->columnFormat(c)->width()); in cellViewToProcess()
172 coordinate.setX(coordinate.x() - sheet->columnFormat(c)->width()); in cellViewToProcess()
366 if (d->sheet->columnFormat(col)->isHiddenOrFiltered()) in paintCells()
369 coordinate.setX(coordinate.x() - d->sheet->columnFormat(col)->width()); in paintCells()
395 coordinate.setX(coordinate.x() + d->sheet->columnFormat(col)->width()); in paintCells()
407 if (d->sheet->columnFormat(col)->isHiddenOrFiltered()) in paintCells()
410 coordinate.setX(coordinate.x() - d->sheet->columnFormat(col)->width()); in paintCells()
439 coordinate.setX(coordinate.x() + d->sheet->columnFormat(col)->width()); in paintCells()
[all …]
H A DCellToolBase_p.cpp593 while (sheet->columnFormat(col)->isHiddenOrFiltered()) { in processControlArrowKey()
630 while (sheet->columnFormat(col)->isHiddenOrFiltered()) { in processControlArrowKey()
849 cl = sheet->columnFormat(cursor.x() + offset); in moveDirection()
852 cl = sheet->columnFormat(cursor.x() + offset); in moveDirection()
858 cl = sheet->columnFormat(cursor.x() + offset); in moveDirection()
861 cl = sheet->columnFormat(cursor.x() + offset); in moveDirection()
1175 const ColumnFormat* columnFormat; in popupActionList() local
1181 columnFormat = q->selection()->activeSheet()->columnFormat(col); in popupActionList()
1182 if (columnFormat->isHidden()) { in popupActionList()
1191 columnFormat = q->selection()->activeSheet()->columnFormat(col); in popupActionList()
[all …]
/dports/editors/calligra/calligra-3.2.1/sheets/shape/
H A DTableShape.cpp63 ColumnFormat* const columnFormat = sheet->nonDefaultColumnFormat(col); in adjustColumnDimensions() local
64 columnFormat->setWidth(columnFormat->width() * factor); in adjustColumnDimensions()
173 size.rwidth() += sheet()->columnFormat(col)->visibleWidth(); in loadOdf()
205 size.rwidth() += sheet->columnFormat(col)->visibleWidth(); in setMap()
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/core/Classes/Database/Schema/Parser/AST/
H A DCreateColumnDefinitionItem.php98 public $columnFormat; variable in TYPO3\\CMS\\Core\\Database\\Schema\\Parser\\AST\\CreateColumnDefinitionItem
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Classes/Database/Schema/Parser/AST/
H A DCreateColumnDefinitionItem.php99 public $columnFormat; variable in TYPO3\\CMS\\Core\\Database\\Schema\\Parser\\AST\\CreateColumnDefinitionItem
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/core/Classes/Database/Schema/Parser/AST/
H A DCreateColumnDefinitionItem.php99 public $columnFormat; variable in TYPO3\\CMS\\Core\\Database\\Schema\\Parser\\AST\\CreateColumnDefinitionItem
/dports/math/qtiplot-doc/qtiplot-0.9.8.9/qtiplot/src/table/
H A DTableDialog.cpp263 QString format = d_table->columnFormat(sc);
269 QString format = d_table->columnFormat(sc);
277 QString format = d_table->columnFormat(sc);
/dports/editors/calligra/calligra-3.2.1/sheets/dialogs/
H A DResize2Dialog.cpp119 … const ColumnFormat* cl = m_selection->activeSheet()->columnFormat(selection->lastRange().left()); in ResizeColumn()
/dports/net-im/licq-qt-gui/licq-f271d55/qt-gui/src/config/
H A Dcontactlist.h87 const QString& columnFormat(int column) { return myColumnFormat[column]; } in columnFormat() function
/dports/net-im/licq-jabber/licq-f271d55/qt-gui/src/config/
H A Dcontactlist.h87 const QString& columnFormat(int column) { return myColumnFormat[column]; } in columnFormat() function

123