FLImaging 6.5.8.1
GUIPanePlacement.h
1#pragma once
2#include "GUIDefinitions.h"
13namespace FLImaging
14{
16 namespace GUI
17 {
26 class FL_EXPORT CGUIPanePlacementBase : public Base::CFLBase
27 {
28 public:
39
52
65
82
99
110 SupportToDuplicateAbstractObject(CGUIPanePlacementBase);
111 DeclareGetClassType();
112 };
113
123 {
124 public:
135
148
161
178
195
206
207 SupportToDuplicateObject(CGUIPanePlacementAttachToTab, *this);
208 DeclareGetClassType();
209
210 public:
218 CDockablePane* m_pPaneTarget;
219 };
220
230 {
231 public:
242
255
268
285
302
313
314 SupportToDuplicateObject(CGUIPanePlacementAttachToTabPosition, *this);
315 DeclareGetClassType();
316
317 public:
326 };
327
337 {
338 public:
349
362
375
392
409
420
421 SupportToDuplicateObject(CGUIPanePlacementDockToPane, *this);
422 DeclareGetClassType();
423
424 public:
432 CDockablePane* m_pPaneTarget;
433
442
451
459 int32_t m_i32Width;
460
468 int32_t m_i32Height;
469 };
470
480 {
481 public:
492
505
518
535
552
563
564 SupportToDuplicateObject(CGUIPanePlacementDockToMainFrame, *this);
565 DeclareGetClassType();
566
567 public:
576
584 int32_t m_i32Width;
585
593 int32_t m_i32Height;
594 };
595
605 {
606 public:
617
630
643
660
677
688
689 SupportToDuplicateObject(CGUIPanePlacementFloating, *this);
690 DeclareGetClassType();
691
692 public:
701 };
702
703 }
704}
Top-level base class of FLImaging.
Definition FLBase.h:36
FLImaging module execution result object.
Definition ResultsDef.h:1514
A class for managing the placement of a pane as a tab attached to a target pane.
Definition GUIPanePlacement.h:123
CDockablePane * m_pPaneTarget
Target pane to which the current pane will be attached as a tab.
Definition GUIPanePlacement.h:218
CGUIPanePlacementAttachToTab()
Default constructor Initializes an instance of CGUIPanePlacementAttachToTab.
virtual ~CGUIPanePlacementAttachToTab()
Default destructor Destroys the instance and releases any allocated resources.
CGUIPanePlacementAttachToTab(const CGUIPanePlacementAttachToTab &rhs)
Copy constructor Creates a new instance by copying an existing CGUIPanePlacementAttachToTab object.
CGUIPanePlacementAttachToTab(const CGUIPanePlacementAttachToTab *pRhs)
Copy constructor Creates a new instance by copying an existing CGUIPanePlacementAttachToTab object.
const CResult Assign(const CGUIPanePlacementAttachToTab *pRhs)
Copies another object into the current instance. Overwrites the current instance with the properties ...
const CResult Assign(const CGUIPanePlacementAttachToTab &rhs)
Copies another object into the current instance. Overwrites the current instance with the properties ...
A class for managing the placement of a pane as a tab attached to a target pane at a specific positio...
Definition GUIPanePlacement.h:230
CGUIPanePlacementAttachToTabPosition(const CGUIPanePlacementAttachToTabPosition *pRhs)
Copy constructor Creates a new instance by copying an existing CGUIPanePlacementAttachToTabPosition o...
EDockPosition m_eTabPosition
The position where the pane will be attached as a tab (e.g., left, right, top, bottom).
Definition GUIPanePlacement.h:325
CGUIPanePlacementAttachToTabPosition(const CGUIPanePlacementAttachToTabPosition &rhs)
Copy constructor Creates a new instance by copying an existing CGUIPanePlacementAttachToTabPosition o...
CGUIPanePlacementAttachToTabPosition()
Default constructor Initializes an instance of CGUIPanePlacementAttachToTabPosition.
virtual ~CGUIPanePlacementAttachToTabPosition()
Default destructor Destroys the instance and releases any allocated resources.
const CResult Assign(const CGUIPanePlacementAttachToTabPosition *pRhs)
Copies another object into the current instance. Overwrites the current instance with the properties ...
const CResult Assign(const CGUIPanePlacementAttachToTabPosition &rhs)
Copies another object into the current instance. Overwrites the current instance with the properties ...
A base class for managing pane placement configurations such as docking and floating within the GUI f...
Definition GUIPanePlacement.h:27
const CResult Assign(const CGUIPanePlacementBase *pRhs)
Copies another object into the current instance. Overwrites the current instance with the properties ...
CGUIPanePlacementBase(const CGUIPanePlacementBase *pRhs)
Copy constructor Creates a new instance by copying an existing CGUIPanePlacementBase object.
CGUIPanePlacementBase()
Default constructor Initializes an instance of CGUIPanePlacementBase.
CGUIPanePlacementBase(const CGUIPanePlacementBase &rhs)
Copy constructor Creates a new instance by copying an existing CGUIPanePlacementBase object.
const CResult Assign(const CGUIPanePlacementBase &rhs)
Copies another object into the current instance. Overwrites the current instance with the properties ...
virtual ~CGUIPanePlacementBase()
Default destructor Destroys the instance and releases any allocated resources.
A class for managing the docking of a pane to a specific position in the MainFrame.
Definition GUIPanePlacement.h:480
CGUIPanePlacementDockToMainFrame(const CGUIPanePlacementDockToMainFrame *pRhs)
Copy constructor Creates a new instance by copying an existing CGUIPanePlacementDockToMainFrame objec...
int32_t m_i32Width
The width of the docked pane.
Definition GUIPanePlacement.h:584
int32_t m_i32Height
The height of the docked pane.
Definition GUIPanePlacement.h:593
CGUIPanePlacementDockToMainFrame()
Default constructor Initializes an instance of CGUIPanePlacementDockToMainFrame.
const CResult Assign(const CGUIPanePlacementDockToMainFrame *pRhs)
Copies another object into the current instance. Overwrites the current instance with the properties ...
const CResult Assign(const CGUIPanePlacementDockToMainFrame &rhs)
Copies another object into the current instance. Overwrites the current instance with the properties ...
CGUIPanePlacementDockToMainFrame(const CGUIPanePlacementDockToMainFrame &rhs)
Copy constructor Creates a new instance by copying an existing CGUIPanePlacementDockToMainFrame objec...
virtual ~CGUIPanePlacementDockToMainFrame()
Default destructor Destroys the instance and releases any allocated resources.
EDockPosition m_eDockPosition
The position in the MainFrame where the pane will be docked (e.g., left, right, top,...
Definition GUIPanePlacement.h:575
A class for managing the docking of a pane relative to a target pane at a specified position (e....
Definition GUIPanePlacement.h:337
CDockablePane * m_pPaneTarget
Target pane to which the current pane will be docked.
Definition GUIPanePlacement.h:432
virtual ~CGUIPanePlacementDockToPane()
Default destructor Destroys the instance and releases any allocated resources.
int32_t m_i32Width
Width of the docked pane.
Definition GUIPanePlacement.h:459
CGUIPanePlacementDockToPane()
Default constructor Initializes an instance of CGUIPanePlacementDockToPane.
const CResult Assign(const CGUIPanePlacementDockToPane &rhs)
Copies another object into the current instance. Overwrites the current instance with the properties ...
int32_t m_i32Height
Height of the docked pane.
Definition GUIPanePlacement.h:468
EDockPosition m_eDockPosition
Position where the pane will be docked (e.g., left, right, top, bottom).
Definition GUIPanePlacement.h:441
CGUIPanePlacementDockToPane(const CGUIPanePlacementDockToPane *pRhs)
Copy constructor Creates a new instance by copying an existing CGUIPanePlacementDockToPane object.
CGUIPanePlacementDockToPane(const CGUIPanePlacementDockToPane &rhs)
Copy constructor Creates a new instance by copying an existing CGUIPanePlacementDockToPane object.
EPaneType m_ePaneTarget
Type of the target pane where docking will be performed.
Definition GUIPanePlacement.h:450
const CResult Assign(const CGUIPanePlacementDockToPane *pRhs)
Copies another object into the current instance. Overwrites the current instance with the properties ...
A class for managing the placement of a pane as a floating window.
Definition GUIPanePlacement.h:605
CGUIPanePlacementFloating(const CGUIPanePlacementFloating *pRhs)
Copy constructor Creates a new instance by copying an existing CGUIPanePlacementFloating object.
CGUIPanePlacementFloating(const CGUIPanePlacementFloating &rhs)
Copy constructor Creates a new instance by copying an existing CGUIPanePlacementFloating object.
const CResult Assign(const CGUIPanePlacementFloating *pRhs)
Copies another object into the current instance. Overwrites the current instance with the properties ...
CGUIPanePlacementFloating()
Default constructor Initializes an instance of CGUIPanePlacementFloating.
virtual ~CGUIPanePlacementFloating()
Default destructor Destroys the instance and releases any allocated resources.
const CResult Assign(const CGUIPanePlacementFloating &rhs)
Copies another object into the current instance. Overwrites the current instance with the properties ...
CRect m_rectWindow
The window rectangle defining the floating pane's position and size.
Definition GUIPanePlacement.h:700
EDockPosition
Dock position.
Definition GUIDefinitions.h:9487
EPaneType
Pane type.
Definition GUIDefinitions.h:9006