Home
last modified time | relevance | path

Searched refs:IsLayout (Results 1 – 14 of 14) sorted by relevance

/dports/devel/upp/upp/bazaar/FormEditor/
H A DFormViewActions.cpp5 if (!IsLayout()) in CreateObject()
48 if (!IsLayout()) in SetSprings()
67 if (!IsLayout()) in RemoveSelection()
82 if (!IsLayout()) in MoveUpObject()
95 if (!IsLayout()) in MoveDownObject()
108 if (!IsLayout()) in MoveToTopObject()
122 if (!IsLayout()) in MoveToBottomObject()
136 if (!IsLayout()) in InvertSelection()
151 if (!IsLayout()) in AlignTopSelection()
169 if (!IsLayout()) in AlignLeftSelection()
[all …]
H A DFormView.hpp72 int GetObjectCount() { return IsLayout() ? GetCurrentLayout()->GetObjects().GetCount() : 0; } in GetObjectCount()
77 FormLayout* GetLayout(int id) { return IsLayout(id) ? &_Layouts[id] : NULL; } in GetLayout()
78 bool IsLayout(int id) const { return id >= 0 && id < GetLayoutCount(); } in IsLayout() function in FormView
79 bool IsLayout() const { return IsLayout(_Layout); } in IsLayout() function in FormView
80 FormLayout* GetCurrentLayout() { return IsLayout() ? (&(_Layouts[_Layout])) : NULL; } in GetCurrentLayout()
81 const FormLayout* GetCurrentLayout() const { return IsLayout() ? (&(_Layouts[_Layout])) : NULL; } in GetCurrentLayout()
87 if (!IsLayout(index)) return; in SelectLayout()
95 void UpdateLayoutName(int index, const String& name) { if (!IsLayout(index)) return; in UpdateLayoutName()
100 if (!IsLayout(index)) in RemoveLayout()
182 void SetPageRect(const Rect& r) { if (IsLayout()) GetCurrentLayout()->SetPageRect(r); } in SetPageRect()
[all …]
H A DFormViewGeneral.cpp103 if (!IsLayout()) in GetObject()
114 if (!IsLayout()) return -1; in ObjectFromPt()
124 if (!IsLayout()) in IsSelected()
137 if (!IsLayout()) in GetSelected()
147 if (!IsLayout()) in GetSelectedCount()
158 if (!IsLayout() || !GetObjectCount()) in GetObjectsRect()
183 if (!IsLayout()) return Offseted(r); in GetSelectionRect()
205 if (!IsLayout()) in AddToSelection()
217 if (!IsLayout()) in ToggleSelection()
232 if (!IsLayout()) in ClearSelection()
[all …]
H A DFormEdit.cpp156 .Enable(_View.IsLayout()) in FileBar()
290 .Enable(_View.IsLayout()) in FormBar()
293 .Enable(_View.IsLayout()) in FormBar()
322 .Enable(_View.IsLayout()) in ViewBar()
325 .Enable(_View.IsLayout()) in ViewBar()
513 if (!_View.IsLayout()) in UpdateChildPos()
530 if (!_View.IsLayout()) in UpdateChildAllPos()
554 if (!_View.IsLayout()) in UpdateChildCount()
823 if (!_View.IsLayout()) in OpenLayoutProperties()
910 if (!_View.IsLayout()) in SaveFile()
[all …]
H A DFormViewInput.cpp26 if (!IsLayout()) in LeftDown()
104 if (!IsLayout()) in MouseMove()
114 if (!IsLayout()) in LeftUp()
123 if (!IsLayout()) in LeftDrag()
133 if (!IsLayout()) in ProcessLeftDrag()
279 if (!IsLayout()) in RightDown()
344 if (!IsLayout()) in RightDrag()
353 if (!IsLayout()) in ProcessRightDrag()
H A DFormViewDraw.cpp9 if (!IsLayout()) in Paint()
122 if (!IsLayout()) in DrawGrid()
140 if (!IsLayout()) in DrawRect()
150 if (!IsLayout()) in DrawRect()
159 if (!IsLayout()) in DrawSprings()
220 if (!IsLayout()) in DrawObject()
294 if (!IsLayout()) in DrawGroupTools()
H A DFormEdit.hpp211 if (!_View.IsLayout()) in UpdateLayoutList()
223 if (!_View.IsLayout()) in UpdateItemList()
239 if (!_View.IsLayout()) in SelectItem()
302 _Container.Set(_View, _View.IsLayout() ? _View.GetPageRect().GetSize() : Size()); in OnRemoveLayout()
H A DFormViewPos.cpp72 if (!IsLayout()) in IsObjectButton()
117 if (!IsLayout()) in IsGroupButton()
H A DFormProperties.cpp8 if (!_View.IsLayout()) in OpenObjectProperties()
320 if (!_View.IsLayout()) in UpdateChildProperties()
H A DScrollContainer.hpp129 if (!p.IsLayout()) in Set()
/dports/devel/upp/upp/bazaar/Form/
H A DForm.cpp45 if (!IsLayout()) in Generate()
311 if (!IsLayout()) in ExecuteForm()
397 if (!IsLayout()) in SetCallback()
416 if (!IsLayout()) in GetData()
430 if (!IsLayout()) in GetCtrl()
H A DForm.hpp40 bool IsLayout() { return _Current != -1; } in IsLayout() function in Form
/dports/www/gohugo/hugo-0.91.2/hugolib/filesystems/
H A Dbasefs_test.go159 c.Assert(bfs.IsLayout(filepath.Join(workingDir, "mylayouts", "file1.txt")), qt.Equals, true)
H A Dbasefs.go312 func (s SourceFilesystems) IsLayout(filename string) bool { func