Searched refs:visualStateType (Results 1 - 22 of 22) sorted by relevance

/vbox/src/VBox/Frontends/VirtualBox/src/runtime/
H A DUIMachine.h44 void sigRequestAsyncVisualStateChange(UIVisualStateType visualStateType);
69 void asyncChangeVisualState(UIVisualStateType visualStateType);
74 void sltChangeVisualState(UIVisualStateType visualStateType);
H A DUIMachineWindow.cpp67 switch (pMachineLogic->visualStateType())
446 UIVisualStateType visualStateType = machineLogic()->visualStateType(); local
451 , visualStateType
461 m_pMainLayout->addWidget(m_pMachineView, 1, 1, viewAlignment(visualStateType));
530 Qt::Alignment UIMachineWindow::viewAlignment(UIVisualStateType visualStateType) argument
532 switch (visualStateType)
H A DUIMachineView.h81 , UIVisualStateType visualStateType
241 UIVisualStateType visualStateType() const;
H A DUIMouseHandler.h56 static UIMouseHandler* create(UIMachineLogic *pMachineLogic, UIVisualStateType visualStateType);
H A DUIMachineLogic.h73 static UIMachineLogic* create(QObject *pParent, UISession *pSession, UIVisualStateType visualStateType);
112 UIVisualStateType visualStateType() const { return m_visualStateType; } function in class:UIMachineLogic
186 UIMachineLogic(QObject *pParent, UISession *pSession, UIVisualStateType visualStateType);
H A DUIMachineView.cpp105 , UIVisualStateType visualStateType
112 switch (visualStateType)
260 if (visualStateType() == UIVisualStateType_Scale)
285 if (visualStateType() == UIVisualStateType_Normal &&
321 const double xScaleFactor = visualStateType() == UIVisualStateType_Scale ?
323 const double yScaleFactor = visualStateType() == UIVisualStateType_Scale ?
901 if (visualStateType() == UIVisualStateType_Scale)
926 if (visualStateType() == UIVisualStateType_Normal)
1215 UIVisualStateType UIMachineView::visualStateType() const function in class:UIMachineView
1217 return machineLogic()->visualStateType();
[all...]
H A DUISession.h166 void changeVisualState(UIVisualStateType visualStateType);
168 void setRequestedVisualState(UIVisualStateType visualStateType) { m_requestedVisualStateType = visualStateType; } argument
H A DUIMachineWindow.h153 static Qt::Alignment viewAlignment(UIVisualStateType visualStateType);
H A DUIMultiScreenLayout.cpp237 if (m_pMachineLogic->visualStateType() == UIVisualStateType_Seamless)
297 if (m_pMachineLogic->visualStateType() == UIVisualStateType_Seamless)
H A DUIKeyboardHandler.h63 static UIKeyboardHandler* create(UIMachineLogic *pMachineLogic, UIVisualStateType visualStateType);
H A DUIFrameBuffer.cpp119 UIVisualStateType visualState() const { return m_pMachineView ? m_pMachineView->visualStateType() : UIVisualStateType_Invalid; }
1130 switch (m_pMachineView->machineLogic()->visualStateType())
1172 if (m_pMachineView->machineLogic()->visualStateType() == UIVisualStateType_Seamless &&
1273 switch (m_pMachineView->machineLogic()->visualStateType())
H A DUIKeyboardHandler.cpp88 UIVisualStateType visualStateType)
93 switch (visualStateType)
230 switch (machineLogic()->visualStateType())
298 switch (machineLogic()->visualStateType())
87 create(UIMachineLogic *pMachineLogic, UIVisualStateType visualStateType) argument
H A DUIMachineLogic.cpp144 UIVisualStateType visualStateType)
147 switch (visualStateType)
743 UIMachineLogic::UIMachineLogic(QObject *pParent, UISession *pSession, UIVisualStateType visualStateType) argument
746 , m_visualStateType(visualStateType)
794 visualStateType() == UIVisualStateType_Seamless ?
1119 setKeyboardHandler(UIKeyboardHandler::create(this, visualStateType()));
1120 setMouseHandler(UIMouseHandler::create(this, visualStateType()));
142 create(QObject *pParent, UISession *pSession, UIVisualStateType visualStateType) argument
H A DUIMouseHandler.cpp78 UIVisualStateType visualStateType)
83 switch (visualStateType)
77 create(UIMachineLogic *pMachineLogic, UIVisualStateType visualStateType) argument
H A DUISession.cpp472 void UISession::changeVisualState(UIVisualStateType visualStateType) argument
474 m_pMachine->asyncChangeVisualState(visualStateType);
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/scale/
H A DUIMachineWindowScale.cpp84 QRect geo = gEDataManager->machineWindowGeometry(machineLogic()->visualStateType(),
95 if (gEDataManager->machineWindowShouldBeMaximized(machineLogic()->visualStateType(),
120 gEDataManager->setMachineWindowGeometry(machineLogic()->visualStateType(),
/vbox/src/VBox/Frontends/VirtualBox/src/extradata/
H A DUIExtraDataManager.h296 /** Returns geometry for machine-window with @a uScreenIndex in @a visualStateType. */
297 QRect machineWindowGeometry(UIVisualStateType visualStateType, ulong uScreenIndex, const QString &strID);
298 /** Returns whether machine-window with @a uScreenIndex in @a visualStateType should be maximized. */
299 bool machineWindowShouldBeMaximized(UIVisualStateType visualStateType, ulong uScreenIndex, const QString &strID);
300 /** Defines @a geometry and @a fMaximized state for machine-window with @a uScreenIndex in @a visualStateType. */
301 void setMachineWindowGeometry(UIVisualStateType visualStateType, ulong uScreenIndex, const QRect &geometry, bool fMaximized, const QString &strID);
H A DUIExtraDataManager.cpp2476 QRect UIExtraDataManager::machineWindowGeometry(UIVisualStateType visualStateType, ulong uScreenIndex, const QString &strID) argument
2480 switch (visualStateType)
2510 bool UIExtraDataManager::machineWindowShouldBeMaximized(UIVisualStateType visualStateType, ulong uScreenIndex, const QString &strID) argument
2514 switch (visualStateType)
2528 void UIExtraDataManager::setMachineWindowGeometry(UIVisualStateType visualStateType, ulong uScreenIndex, const QRect &geometry, bool fMaximized, const QString &strID) argument
2532 switch (visualStateType)
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/normal/
H A DUIMachineWindowNormal.cpp341 QRect geo = gEDataManager->machineWindowGeometry(machineLogic()->visualStateType(),
365 if (gEDataManager->machineWindowShouldBeMaximized(machineLogic()->visualStateType(),
397 gEDataManager->setMachineWindowGeometry(machineLogic()->visualStateType(),
/vbox/src/VBox/Frontends/VirtualBox/src/converter/
H A DUIConverterBackend.h154 template<> QString toInternalString(const UIVisualStateType &visualStateType);
H A DUIConverterBackendGlobal.cpp820 template<> QString toInternalString(const UIVisualStateType &visualStateType) argument
823 switch (visualStateType)
832 AssertMsgFailed(("No text for visual state type=%d", visualStateType));
/vbox/src/VBox/Frontends/VirtualBox/src/globals/
H A DVBoxGlobal.cpp3953 UIVisualStateType visualStateType = UIVisualStateType_Invalid; local
4005 visualStateType = UIVisualStateType_Normal;
4009 visualStateType = UIVisualStateType_Fullscreen;
4013 visualStateType = UIVisualStateType_Seamless;
4017 visualStateType = UIVisualStateType_Scale;
4181 if (visualStateType != UIVisualStateType_Invalid && !vmUuid.isEmpty())
4182 gEDataManager->setRequestedVisualState(visualStateType, vmUuid);

Completed in 120 milliseconds