VR-Forces Developer's Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
qtLineEdit.h
Go to the documentation of this file.
1 /*******************************************************************************
2 ** Copyright (c) 2021 MAK Technologies, Inc.
3 ** All rights reserved.
4 *******************************************************************************/
5 
6 #pragma once
7 
9 
10 #include <QtWidgets/QLineEdit>
11 
12 #include <boost/signals2.hpp>
13 
14 namespace makVrv
15 {
16  class DtDe;
17 }
18 
19 namespace makVrf
20 {
24  {
25  public:
26  DtLineEdit(makVrv::DtDe& de, QWidget* p);
27  virtual ~DtLineEdit();
28 
29  virtual void focusInEvent(QFocusEvent*) override;
30  virtual void focusOutEvent(QFocusEvent*) override;
31 
32  boost::signals2::signal<void ()> signal_focusReceived;
33  boost::signals2::signal<void ()> signal_focusLost;
34 
35  protected:
37  bool myBlocked;
38  };
39 }
makVrv::DtDe & myDe
Definition: qtLineEdit.h:36
boost::signals2::signal< void()> signal_focusReceived
Definition: qtLineEdit.h:32
bool myBlocked
Definition: qtLineEdit.h:37
#define DT_DLL_VRFGUICOMMONQT
Definition: vrfGuiCommonQt.h:20
The DtDe is the core component of any VR-Vantage application. It owns a DtRenderer, DtDeCommunicator, as well as a DtDisplay and other things.
Definition: DtDe.h:72
Special line editor that on focus in events will block keyboard processing by Vantage and on focus ou...
Definition: qtLineEdit.h:23
boost::signals2::signal< void()> signal_focusLost
Definition: qtLineEdit.h:33

Document ID: Generated on Tue Sep 24 19:28:17 EDT 2024 from SVN revision 269799
Copyright © 2005-2024 MAK Technologies. All Rights Reserved (www.mak.com)