Home
last modified time | relevance | path

Searched refs:LayoutData (Results 1 – 25 of 153) sorted by relevance

1234567

/dports/devel/upp/upp/uppsrc/ide/LayDes/
H A Dlayout.cpp73 void LayoutData::SetCharset(byte cs) in SetCharset()
80 void LayoutData::Read(CParser& p) in Read()
94 String LayoutData::Save(int y, const String& eol) in Save()
117 String LayoutData::MakeState() in MakeState()
126 void LayoutData::LoadState(const String& s) in LoadState()
135 void LayoutData::SaveState() in SaveState()
141 bool LayoutData::IsUndo() in IsUndo()
146 bool LayoutData::IsRedo() in IsRedo()
151 void LayoutData::Do(LayoutUndo& u1, LayoutUndo& u2) in Do()
161 void LayoutData::Undo() in Undo()
[all …]
H A Dlaydes.cpp78 LayoutData& l = CurrentLayout(); in SetSb()
171 LayoutData& l = layout[layid]; in PaintLayoutItems()
204 LayoutData& l = CurrentLayout(); in Paint()
302 LayoutData& l = CurrentLayout(); in FindItem()
519 LayoutData& l = CurrentLayout(); in StoreItemRects()
532 LayoutData& l = CurrentLayout(); in LeftDown()
598 LayoutData& l = CurrentLayout(); in MouseMove()
712 LayoutData& l = CurrentLayout(); in CreateCtrl()
978 LayoutData l; in LoadLayoutData()
985 return LayoutData(); in LoadLayoutData()
[all …]
H A DLayDes.h226 struct LayoutData { struct
250 rval_default(LayoutData); argument
252 LayoutData() { size = Size(400, 200); charset = CHARSET_UNICODE; } in LayoutData() function
324 Array<LayoutData> layout;
392 LayoutData& CurrentLayout();
399 LayoutData LoadLayoutData(const String& s);
/dports/www/grafana8/grafana-8.3.6/vendor/golang.org/x/exp/shiny/widget/flex/
H A Dflex.go140 if d, ok := c.LayoutData.(LayoutData); ok {
184 if d, ok := child.n.LayoutData.(LayoutData); ok && d.BreakAfter {
346 if d, ok := child.n.LayoutData.(LayoutData); ok {
553 if d, ok := n.LayoutData.(LayoutData); ok {
562 if d, ok := n.LayoutData.(LayoutData); ok {
568 return n.LayoutData.(LayoutData).BasisPx
577 if d, ok := n.LayoutData.(LayoutData); ok {
584 if d, ok := n.LayoutData.(LayoutData); ok && d.Shrink != nil {
592 d, ok := n.LayoutData.(LayoutData)
600 if d, ok := n.LayoutData.(LayoutData); ok {
[all …]
H A Dflex_test.go176 layoutData: []LayoutData{{}, {Grow: 1}},
186 layoutData: []LayoutData{{}, {Grow: 1}, {Grow: 1}},
196 layoutData: []LayoutData{
211 layoutData: []LayoutData{
228 layoutData: []LayoutData{
247 layoutData: []LayoutData{
266 layoutData: []LayoutData{
285 layoutData: []LayoutData{
304 layoutData: []LayoutData{
323 layoutData: []LayoutData{
[all …]
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/golang.org/x/exp/shiny/widget/flex/
H A Dflex.go140 if d, ok := c.LayoutData.(LayoutData); ok {
184 if d, ok := child.n.LayoutData.(LayoutData); ok && d.BreakAfter {
346 if d, ok := child.n.LayoutData.(LayoutData); ok {
553 if d, ok := n.LayoutData.(LayoutData); ok {
562 if d, ok := n.LayoutData.(LayoutData); ok {
568 return n.LayoutData.(LayoutData).BasisPx
577 if d, ok := n.LayoutData.(LayoutData); ok {
584 if d, ok := n.LayoutData.(LayoutData); ok && d.Shrink != nil {
592 d, ok := n.LayoutData.(LayoutData)
600 if d, ok := n.LayoutData.(LayoutData); ok {
[all …]
H A Dflex_test.go176 layoutData: []LayoutData{{}, {Grow: 1}},
186 layoutData: []LayoutData{{}, {Grow: 1}, {Grow: 1}},
196 layoutData: []LayoutData{
211 layoutData: []LayoutData{
228 layoutData: []LayoutData{
247 layoutData: []LayoutData{
266 layoutData: []LayoutData{
285 layoutData: []LayoutData{
304 layoutData: []LayoutData{
323 layoutData: []LayoutData{
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/servo/components/layout/
H A Ddata.rs15 pub layout_data: AtomicRefCell<LayoutData>,
22 layout_data: AtomicRefCell::new(LayoutData::new()), in new()
30 pub struct LayoutData { struct
48 impl LayoutData { argument
50 pub fn new() -> LayoutData { in new()
H A Dwrapper.rs34 use data::{LayoutData, LayoutDataFlags, StyleAndLayoutData};
44 fn borrow_layout_data(&self) -> Option<AtomicRef<LayoutData>>; in borrow_layout_data() argument
45 fn mutate_layout_data(&self) -> Option<AtomicRefMut<LayoutData>>; in mutate_layout_data() argument
50 fn borrow_layout_data(&self) -> Option<AtomicRef<LayoutData>> { in borrow_layout_data() argument
54 fn mutate_layout_data(&self) -> Option<AtomicRefMut<LayoutData>> { in mutate_layout_data() argument
/dports/x11/kitty/kitty-0.23.1/kitty/layout/
H A Dgrid.py18 BorderLine, Layout, LayoutData, LayoutDimension, ListOfWindows,
123 ) -> Generator[Tuple[int, LayoutData, LayoutData], None, None]:
154 def extents(ld: LayoutData) -> Tuple[int, int]: argument
159 def layout(ld: LayoutData, cell_length: int, before_dec: int, after_dec: int) -> LayoutData: argument
168 …return LayoutData(start + before_dec, number_of_cells, before_dec, size - cell_area - before_dec, …
170 def position_window_in_grid_cell(window_idx: int, xl: LayoutData, yl: LayoutData) -> None: argument
195 xl: LayoutData = LayoutData()
196 yl: LayoutData = LayoutData()
198 layout_data_map: Dict[int, Tuple[LayoutData, LayoutData]] = {}
217 def ends(yl: LayoutData) -> Tuple[int, int]: argument
H A Dvertical.py13 BorderLine, Layout, LayoutData, LayoutDimension, NeighborsMap,
19 data: Iterable[Tuple[WindowGroup, LayoutData, LayoutData]], argument
100 …a(self, all_windows: WindowList) -> Generator[Tuple[WindowGroup, LayoutData, LayoutData], None, No…
H A Dtall.py15 BorderLine, Layout, LayoutData, LayoutDimension, LayoutOpts, NeighborsMap,
125 …t(self, all_windows: WindowList) -> Generator[Tuple[WindowGroup, LayoutData, LayoutData, bool], No…
141 …t(self, all_windows: WindowList) -> Generator[Tuple[WindowGroup, LayoutData, LayoutData, bool], No…
219 main_layouts: List[Tuple[WindowGroup, LayoutData, LayoutData]] = []
H A Dbase.py33 class LayoutData(NamedTuple): class
42 LayoutDimension = Generator[LayoutData, None, None]
130 yield LayoutData(pos, cells_per_window, before_space, after_space, content_size)
162 def window_geometry_from_layouts(x: LayoutData, y: LayoutData) -> WindowGeometry: argument
362 …def set_window_group_geometry(self, wg: WindowGroup, xl: LayoutData, yl: LayoutData) -> WindowGeom… argument
/dports/biology/ncbi-toolkit/ncbi/desktop/
H A Dsdisplay.h70 } LayoutData, PNTR LayoutPtr; typedef
72 #define SeqLayoutData LayoutData
74 #define FeatLayoutData LayoutData
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/
H A DCellEditor.java101 public static class LayoutData { class in CellEditor
449 public LayoutData getLayoutData() { in getLayoutData()
450 LayoutData result = new LayoutData(); in getLayoutData()
H A DTreeViewerEditor.java21 import org.eclipse.jface.viewers.CellEditor.LayoutData;
121 protected void setLayoutData(LayoutData layoutData) { in setLayoutData()
H A DTableViewerEditor.java21 import org.eclipse.jface.viewers.CellEditor.LayoutData;
122 protected void setLayoutData(LayoutData layoutData) { in setLayoutData()
H A DTextCellEditor.java260 public LayoutData getLayoutData() { in getLayoutData()
261 LayoutData data = new LayoutData(); in getLayoutData()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ua/org.eclipse.help.webapp/advanced/
H A Dindex.jsp17 LayoutData data = new LayoutData(application,request, response);
19 if(data.getMode() == LayoutData.MODE_INFOCENTER){
H A DhelpToolbar.jsp17 LayoutData data = new LayoutData(application,request, response);
H A Dcontent.jsp17 LayoutData data = new LayoutData(application,request, response);
/dports/converters/wkhtmltopdf/qt-5db36ec/src/gui/text/
H A Dqtextengine_p.h428 struct LayoutData { struct
429 LayoutData(const QString &str, void **stack_memory, int mem_size);
430 LayoutData();
431 ~LayoutData();
447 QTextEngine(LayoutData *data); argument
598 mutable LayoutData *layoutData;
657 LayoutData _layoutData;
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ua/org.eclipse.help.webapp/
H A Dindex.jsp20 LayoutData data = new LayoutData(application,request, response);
/dports/devel/RStudio/rstudio-2021.09.1-372/src/gwt/src/org/rstudio/studio/client/workbench/ui/
H A DMainSplitPanel.java311 LayoutData layoutData = (LayoutData) right_.getLayoutData(); in enforceBoundaries()
347 LayoutData layoutData = (LayoutData) right_.getLayoutData(); in onResize()
/dports/editors/calligra/calligra-3.2.1/plugins/chartshape/
H A DChartLayout.h226 class LayoutData; variable
227 QMap<KoShape*, LayoutData*> m_layoutItems;

1234567