Home
last modified time | relevance | path

Searched refs:rJsonWriter (Results 1 – 25 of 44) sorted by relevance

12

/dports/editors/libreoffice/libreoffice-7.2.6.2/sfx2/source/sidebar/
H A DDeck.cxx148 rJsonWriter.put("type", "deck"); in DumpAsPropertyTree()
149 rJsonWriter.put("text", GetText()); in DumpAsPropertyTree()
150 rJsonWriter.put("enabled", IsEnabled()); in DumpAsPropertyTree()
152 auto childrenNode = rJsonWriter.startArray("children"); in DumpAsPropertyTree()
163 auto childNode = rJsonWriter.startStruct(); in DumpAsPropertyTree()
164 rJsonWriter.put("id", it->GetId()); in DumpAsPropertyTree()
165 rJsonWriter.put("type", "panel"); in DumpAsPropertyTree()
166 rJsonWriter.put("text", it->GetTitle()); in DumpAsPropertyTree()
167 rJsonWriter.put("enabled", true); in DumpAsPropertyTree()
172 auto child2Node = rJsonWriter.startStruct(); in DumpAsPropertyTree()
[all …]
H A DPanelLayout.cxx29 IMPL_LINK(PanelLayout, DumpAsPropertyTreeHdl, tools::JsonWriter&, rJsonWriter, void) in IMPL_LINK() argument
31 DumpAsPropertyTree(rJsonWriter); in IMPL_LINK()
H A DPanel.cxx112 IMPL_LINK(Panel, DumpAsPropertyTreeHdl, tools::JsonWriter&, rJsonWriter, void) in IMPL_LINK() argument
115 rJsonWriter.put("type", "panel"); in IMPL_LINK()
/dports/editors/libreoffice/libreoffice-7.2.6.2/vcl/source/treelist/
H A Diconview.cxx246 static void lcl_DumpEntryAndSiblings(tools::JsonWriter& rJsonWriter, SvTreeListEntry* pEntry, in lcl_DumpEntryAndSiblings() argument
251 auto aNode = rJsonWriter.startStruct(); in lcl_DumpEntryAndSiblings()
256 rJsonWriter.put("text", static_cast<const SvLBoxString*>(pIt)->GetText()); in lcl_DumpEntryAndSiblings()
263 rJsonWriter.put("image", extractPngString(pBmpItem)); in lcl_DumpEntryAndSiblings()
267 rJsonWriter.put("selected", "true"); in lcl_DumpEntryAndSiblings()
269 rJsonWriter.put("row", in lcl_DumpEntryAndSiblings()
276 void IconView::DumpAsPropertyTree(tools::JsonWriter& rJsonWriter) in DumpAsPropertyTree() argument
278 SvTreeListBox::DumpAsPropertyTree(rJsonWriter); in DumpAsPropertyTree()
279 rJsonWriter.put("type", "iconview"); in DumpAsPropertyTree()
280 auto aNode = rJsonWriter.startArray("entries"); in DumpAsPropertyTree()
[all …]
H A Dsvtabbx.cxx50 auto aNode = rJsonWriter.startStruct(); in lcl_DumpEntryAndSiblings()
59 auto aColumns = rJsonWriter.startArray("columns"); in lcl_DumpEntryAndSiblings()
85 rJsonWriter.put("ondemand", "true"); in lcl_DumpEntryAndSiblings()
93 rJsonWriter.put("state", "false"); in lcl_DumpEntryAndSiblings()
95 rJsonWriter.put("state", "true"); in lcl_DumpEntryAndSiblings()
99 rJsonWriter.put("selected", "true"); in lcl_DumpEntryAndSiblings()
116 SvTreeListBox::DumpAsPropertyTree(rJsonWriter); in DumpAsPropertyTree()
122 auto entriesNode = rJsonWriter.startArray("entries"); in DumpAsPropertyTree()
587 SvTabListBox::DumpAsPropertyTree(rJsonWriter); in DumpAsPropertyTree()
589 auto aHeaders = rJsonWriter.startArray("headers"); in DumpAsPropertyTree()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/sw/source/uibase/misc/
H A Dswruler.cxx236 void SwCommentRuler::CreateJsonNotification(tools::JsonWriter& rJsonWriter) in CreateJsonNotification() argument
254 rJsonWriter.put("margin1", convertTwipToMm100(GetMargin1())); in CreateJsonNotification()
255 rJsonWriter.put("margin2", convertTwipToMm100(GetMargin2())); in CreateJsonNotification()
256 rJsonWriter.put("leftOffset", convertTwipToMm100(GetNullOffset())); in CreateJsonNotification()
257 rJsonWriter.put("pageOffset", convertTwipToMm100(GetPageOffset())); in CreateJsonNotification()
261 rJsonWriter.put("pageWidth", convertTwipToMm100(GetPageWidth())); in CreateJsonNotification()
264 auto tabsNode = rJsonWriter.startNode("tabs"); in CreateJsonNotification()
270 auto tabNode = rJsonWriter.startNode(""); in CreateJsonNotification()
271 rJsonWriter.put("position", convertTwipToMm100(tab.nPos)); in CreateJsonNotification()
272 rJsonWriter.put("style", tab.nStyle); in CreateJsonNotification()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/svx/source/tbxctrls/
H A Dtbunocontroller.cxx340 IMPL_LINK(SvxFontSizeBox_Base, DumpAsPropertyTreeHdl, tools::JsonWriter&, rJsonWriter, void) in IMPL_LINK() argument
343 auto entriesNode = rJsonWriter.startNode("entries"); in IMPL_LINK()
346 auto entryNode = rJsonWriter.startNode(""); in IMPL_LINK()
347 rJsonWriter.put("", m_xWidget->get_text(i)); in IMPL_LINK()
352 rJsonWriter.put("selectedCount", static_cast<sal_Int32>(nActive == -1 ? 0 : 1)); in IMPL_LINK()
354 auto selectedNode = rJsonWriter.startNode("selectedEntries"); in IMPL_LINK()
357 auto node = rJsonWriter.startNode(""); in IMPL_LINK()
358 rJsonWriter.put("", static_cast<sal_Int32>(nActive)); in IMPL_LINK()
362 rJsonWriter.put("command", ".uno:FontHeight"); in IMPL_LINK()
H A Dtbcontrl.cxx1364 auto entriesNode = rJsonWriter.startNode("entries"); in IMPL_LINK()
1367 auto entryNode = rJsonWriter.startNode(""); in IMPL_LINK()
1368 rJsonWriter.put("", m_xWidget->get_text(i)); in IMPL_LINK()
1379 auto node = rJsonWriter.startNode(""); in IMPL_LINK()
1380 rJsonWriter.put("", static_cast<sal_Int32>(nActive)); in IMPL_LINK()
1384 rJsonWriter.put("command", ".uno:StyleApply"); in IMPL_LINK()
1735 auto entriesNode = rJsonWriter.startNode("entries"); in IMPL_LINK()
1738 auto entryNode = rJsonWriter.startNode(""); in IMPL_LINK()
1739 rJsonWriter.put("", m_xWidget->get_text(i)); in IMPL_LINK()
1750 auto entryNode = rJsonWriter.startNode(""); in IMPL_LINK()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/sw/source/uibase/app/
H A Dswmodul1.cxx438 void SwModule::GetRedlineAuthorInfo(tools::JsonWriter& rJsonWriter) in GetRedlineAuthorInfo() argument
440 auto authorsNode = rJsonWriter.startArray("authors"); in GetRedlineAuthorInfo()
443 auto authorNode = rJsonWriter.startStruct(); in GetRedlineAuthorInfo()
444 rJsonWriter.put("index", static_cast<sal_Int64>(nAuthor)); in GetRedlineAuthorInfo()
445 rJsonWriter.put("name", m_pAuthorNames[nAuthor]); in GetRedlineAuthorInfo()
446 rJsonWriter.put("color", sal_uInt32(lcl_GetAuthorColor(nAuthor))); in GetRedlineAuthorInfo()
/dports/editors/libreoffice/libreoffice-7.2.6.2/vcl/source/window/
H A Dlayout.cxx380 VclContainer::DumpAsPropertyTree(rJsonWriter); in DumpAsPropertyTree()
708 VclBox::DumpAsPropertyTree(rJsonWriter); in DumpAsPropertyTree()
709 rJsonWriter.put("type", "buttonbox"); in DumpAsPropertyTree()
734 rJsonWriter.put("layoutstyle", "end"); in DumpAsPropertyTree()
1361 rJsonWriter.put("type", "grid"); in DumpAsPropertyTree()
1544 VclBin::DumpAsPropertyTree(rJsonWriter); in DumpAsPropertyTree()
1545 rJsonWriter.put("type", "frame"); in DumpAsPropertyTree()
1791 rJsonWriter.put("type", "expander"); in DumpAsPropertyTree()
2962 Control::DumpAsPropertyTree(rJsonWriter); in DumpAsPropertyTree()
2963 rJsonWriter.put("type", "drawingarea"); in DumpAsPropertyTree()
[all …]
H A Ddialog.cxx1661 void Dialog::DumpAsPropertyTree(tools::JsonWriter& rJsonWriter) in DumpAsPropertyTree() argument
1663 SystemWindow::DumpAsPropertyTree(rJsonWriter); in DumpAsPropertyTree()
1664 rJsonWriter.put("title", GetText()); in DumpAsPropertyTree()
1668 rJsonWriter.put("collapsed", "true"); in DumpAsPropertyTree()
1674 rJsonWriter.put("dialogid", sDialogId.copy(nStartPos)); in DumpAsPropertyTree()
1677 auto aResponses = rJsonWriter.startArray("responses"); in DumpAsPropertyTree()
1680 auto aResponse = rJsonWriter.startStruct(); in DumpAsPropertyTree()
1681 rJsonWriter.put("id", rResponse.first->get_id()); in DumpAsPropertyTree()
1682 rJsonWriter.put("response", rResponse.second); in DumpAsPropertyTree()
H A Dtoolbox2.cxx1733 void ToolBox::DumpAsPropertyTree(tools::JsonWriter& rJsonWriter) in DumpAsPropertyTree() argument
1735 DockingWindow::DumpAsPropertyTree(rJsonWriter); in DumpAsPropertyTree()
1739 auto childrenNode = rJsonWriter.startArray("children"); in DumpAsPropertyTree()
1745 auto childNode = rJsonWriter.startStruct(); in DumpAsPropertyTree()
1749 rJsonWriter.put("type", "toolitem"); in DumpAsPropertyTree()
1750 rJsonWriter.put("text", GetItemText(nId)); in DumpAsPropertyTree()
1751 rJsonWriter.put("command", GetItemCommand(nId)); in DumpAsPropertyTree()
/dports/editors/libreoffice/libreoffice-7.2.6.2/vcl/inc/
H A Diconview.hxx38 virtual void DumpAsPropertyTree(tools::JsonWriter& rJsonWriter) override;
/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/source/ui/view/
H A Dtabview.cxx2689 auto node = rJsonWriter.startStruct(); in getRowColumnHeaders()
2690 rJsonWriter.put("text", nStartRow + 1); in getRowColumnHeaders()
2691 rJsonWriter.put("size", nTotalPixels); in getRowColumnHeaders()
2713 auto node = rJsonWriter.startStruct(); in getRowColumnHeaders()
2715 rJsonWriter.put("size", nTotalPixels); in getRowColumnHeaders()
2723 rJsonWriter.putRaw(aRowGroupsBuffer.getStr()); in getRowColumnHeaders()
2782 auto node = rJsonWriter.startStruct(); in getRowColumnHeaders()
2784 rJsonWriter.put("size", nTotalPixels); in getRowColumnHeaders()
2808 auto node = rJsonWriter.startStruct(); in getRowColumnHeaders()
2809 rJsonWriter.put("text", aText); in getRowColumnHeaders()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/vcl/source/control/
H A Dfmtfield.cxx1352 void FormattedField::DumpAsPropertyTree(tools::JsonWriter& rJsonWriter) in DumpAsPropertyTree() argument
1354 SpinField::DumpAsPropertyTree(rJsonWriter); in DumpAsPropertyTree()
1356 rJsonWriter.put("min", rFormatter.GetMinValue()); in DumpAsPropertyTree()
1357 rJsonWriter.put("max", rFormatter.GetMaxValue()); in DumpAsPropertyTree()
1358 rJsonWriter.put("value", rFormatter.GetValue()); in DumpAsPropertyTree()
1359 rJsonWriter.put("step", rFormatter.GetSpinSize()); in DumpAsPropertyTree()
H A Dtabctrl.cxx2183 rJsonWriter.put("id", get_id()); in DumpAsPropertyTree()
2184 rJsonWriter.put("type", "tabcontrol"); in DumpAsPropertyTree()
2185 rJsonWriter.put("selected", GetCurPageId()); in DumpAsPropertyTree()
2195 auto childNode = rJsonWriter.startStruct(); in DumpAsPropertyTree()
2196 pChild->DumpAsPropertyTree(rJsonWriter); in DumpAsPropertyTree()
2199 rJsonWriter.put("hidden", "true"); in DumpAsPropertyTree()
2204 auto tabsNode = rJsonWriter.startArray("tabs"); in DumpAsPropertyTree()
2207 auto tabNode = rJsonWriter.startStruct(); in DumpAsPropertyTree()
2208 rJsonWriter.put("text", GetPageText(id)); in DumpAsPropertyTree()
2209 rJsonWriter.put("id", id); in DumpAsPropertyTree()
[all …]
H A Dlistbox.cxx1398 void ListBox::DumpAsPropertyTree(tools::JsonWriter& rJsonWriter) in DumpAsPropertyTree() argument
1400 Control::DumpAsPropertyTree(rJsonWriter); in DumpAsPropertyTree()
1403 auto entriesNode = rJsonWriter.startArray("entries"); in DumpAsPropertyTree()
1406 rJsonWriter.putSimpleValue(GetEntry(i)); in DumpAsPropertyTree()
1410 rJsonWriter.put("selectedCount", GetSelectedEntryCount()); in DumpAsPropertyTree()
1413 auto entriesNode = rJsonWriter.startArray("selectedEntries"); in DumpAsPropertyTree()
1416 rJsonWriter.putSimpleValue(OUString::number(GetSelectedEntryPos(i))); in DumpAsPropertyTree()
H A Dcombobox.cxx1549 void ComboBox::DumpAsPropertyTree(tools::JsonWriter& rJsonWriter) in DumpAsPropertyTree() argument
1551 Control::DumpAsPropertyTree(rJsonWriter); in DumpAsPropertyTree()
1554 auto entriesNode = rJsonWriter.startArray("entries"); in DumpAsPropertyTree()
1557 rJsonWriter.putSimpleValue(GetEntry(i)); in DumpAsPropertyTree()
1562 auto selectedNode = rJsonWriter.startArray("selectedEntries"); in DumpAsPropertyTree()
1565 rJsonWriter.putSimpleValue(OUString::number(GetSelectedEntryPos(i))); in DumpAsPropertyTree()
1569 rJsonWriter.put("selectedCount", GetSelectedEntryCount()); in DumpAsPropertyTree()
H A Dfixed.cxx656 void FixedLine::DumpAsPropertyTree(tools::JsonWriter& rJsonWriter) in DumpAsPropertyTree() argument
658 Control::DumpAsPropertyTree(rJsonWriter); in DumpAsPropertyTree()
659 rJsonWriter.put("type", "separator"); in DumpAsPropertyTree()
660 rJsonWriter.put("orientation", (GetStyle() & WB_VERT) ? "vertical" : "horizontal"); in DumpAsPropertyTree()
H A Dfield.cxx1541 void MetricField::DumpAsPropertyTree(tools::JsonWriter& rJsonWriter) in DumpAsPropertyTree() argument
1543 SpinField::DumpAsPropertyTree(rJsonWriter); in DumpAsPropertyTree()
1544 rJsonWriter.put("min", GetMin()); in DumpAsPropertyTree()
1545 rJsonWriter.put("max", GetMax()); in DumpAsPropertyTree()
1546 rJsonWriter.put("unit", FieldUnitToString(GetUnit())); in DumpAsPropertyTree()
1549 rJsonWriter.put("value", sValue); in DumpAsPropertyTree()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sw/source/uibase/inc/
H A Dswruler.hxx46 void CreateJsonNotification(tools::JsonWriter& rJsonWriter);
/dports/editors/libreoffice/libreoffice-7.2.6.2/include/vcl/toolkit/
H A Dsvtabbx.hxx93 virtual void DumpAsPropertyTree(tools::JsonWriter& rJsonWriter) override;
218 virtual void DumpAsPropertyTree(tools::JsonWriter& rJsonWriter) override;
H A Ddialog.hxx162 void DumpAsPropertyTree(tools::JsonWriter& rJsonWriter) override;
/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/source/ui/unoobj/
H A Ddocuno.cxx1025 rJsonWriter.put("commandName", ".uno:CellCursor"); in getCellCursor()
1096 auto commentsNode = rJsonWriter.startNode("comments"); in getPostIts()
1099 auto commentNode = rJsonWriter.startNode(""); in getPostIts()
1101 rJsonWriter.put("id", aNote.mpNote->GetId()); in getPostIts()
1102 rJsonWriter.put("tab", aNote.maPos.Tab()); in getPostIts()
1105 rJsonWriter.put("text", aNote.mpNote->GetText()); in getPostIts()
1124 rJsonWriter.put("cellPos", aRect.toString()); in getPostIts()
1141 auto commentNode = rJsonWriter.startNode(""); in getPostItsPos()
1143 rJsonWriter.put("id", aNote.mpNote->GetId()); in getPostItsPos()
1144 rJsonWriter.put("tab", aNote.maPos.Tab()); in getPostItsPos()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/sw/source/uibase/uno/
H A Dunotxdoc.cxx3315 SW_MOD()->GetRedlineAuthorInfo(rJsonWriter); in getTrackedChangeAuthors()
3318 void SwXTextDocument::getRulerState(tools::JsonWriter& rJsonWriter) in getRulerState() argument
3324 void SwXTextDocument::getPostIts(tools::JsonWriter& rJsonWriter) in getPostIts() argument
3327 auto commentsNode = rJsonWriter.startArray("comments"); in getPostIts()
3358 auto commentNode = rJsonWriter.startStruct(); in getPostIts()
3359 rJsonWriter.put("id", pField->GetPostItId()); in getPostIts()
3360 rJsonWriter.put("parent", pWin->CalcParent()); in getPostIts()
3361 rJsonWriter.put("author", pField->GetPar1()); in getPostIts()
3362 rJsonWriter.put("text", pField->GetPar2()); in getPostIts()
3365 rJsonWriter.put("anchorPos", aSVRect.toString()); in getPostIts()
[all …]

12