123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- //
- //////////////////////////////////////////////////////////////////////////////
- //
- // Copyright 2015 Autodesk, Inc. All rights reserved.
- //
- // Use of this software is subject to the terms of the Autodesk license
- // agreement provided at the time of installation or download, or which
- // otherwise accompanies this software in either electronic or hard copy form.
- //
- //////////////////////////////////////////////////////////////////////////////
- //
- // DESCRIPTION: Header for Application/Session Variables Class
- // for variables in pre Tahoe versions stored in the
- // database header.
- //
- #ifndef ACAPPVAR_H
- #define ACAPPVAR_H
- #include "acdb.h"
- #pragma pack (push, 8)
- enum {
- kGroupsOn = 0x01,
- kHatchAssocOn = 0x02
- };
- class AcDbAppSystemVariables {
- public:
- inline AcDbAppSystemVariables();
- inline ~AcDbAppSystemVariables() {};
- // ATTDIA
- Acad::ErrorStatus setAttdia(bool value, bool bUndo = false);
- inline bool attdia() const;
- // ATTREQ
- Acad::ErrorStatus setAttreq(bool, bool bUndo = false);
- inline bool attreq() const;
- // BLIPMODE
- Acad::ErrorStatus setBlipmode(bool, bool bUndo = false);
- inline bool blipmode() const;
- // COORDS
- Acad::ErrorStatus setCoords(Adesk::Int16 value, bool bUndo = false);
- inline Adesk::Int16 coords() const;
- // STATUSBAR
- Acad::ErrorStatus setStatusbar(Adesk::Int16 value, bool bUndo = false);
- inline Adesk::Int16 statusbar() const;
- // MENUBAR
- Acad::ErrorStatus setMenubar(bool value, bool bUndo = false);
- inline bool menubar() const;
- // APPSTATUSBARUSEICONS
- Acad::ErrorStatus setAppStatusBarUseIcons(bool value, bool bUndo = false);
- inline bool appstatusbaruseicons() const;
- // DELOBJ
- Acad::ErrorStatus setDelUsedObj(Adesk::Int16, bool bUndo = false);
- inline Adesk::Int16 delUsedObj() const;
- // DRAGMODE
- Acad::ErrorStatus setDragmode(Adesk::Int16, bool bUndo = false);
- inline Adesk::Int16 dragmode() const;
- // OSMODE
- Acad::ErrorStatus setOsmode(Adesk::Int16 value, bool bUndo = false);
- inline Adesk::Int16 osmode() const;
- // PICKSTYLE
- Acad::ErrorStatus setPickstyle(Adesk::Int16 value, bool bUndo = false);
- inline Adesk::Int16 pickstyle() const;
- // LWDEFAULT
- Acad::ErrorStatus setLwdefault(AcDb::LineWeight value, bool bUndo = false);
- inline AcDb::LineWeight lwdefault() const;
- // HPASSOC
- Acad::ErrorStatus setHpassoc(bool value, bool bUndo = false);
- inline bool hpassoc() const;
- private:
- bool m_attdia; // ATTDIA
- bool m_attreq; // ATTREQ
- bool m_blipmode; // BLIPMODE
- short m_delobj; // DELOBJS
- short m_coords; // COORDS
- short m_statusbar; // STATUSBAR
- bool m_menubar; // MENUBAR
- bool m_appstatusbaruseicons; // APPSTATUSBARUSEICONS
- short m_dragmode; // DRAGMODE
- short m_osmode; // OSMODE
- short m_pkstyle; // PICKSTYLE
- AcDb::LineWeight m_lwdefault; // LWDEFAULT
- bool m_hpassoc; // HPASSOC
- };
- inline
- AcDbAppSystemVariables::AcDbAppSystemVariables()
- : m_attdia(true),
- m_attreq(true),
- m_blipmode(false),
- m_delobj(3),
- m_coords(0),
- m_statusbar(1),
- m_menubar(false),
- m_appstatusbaruseicons(true),
- m_dragmode(2),
- m_osmode(0),
- m_pkstyle(kGroupsOn),
- m_lwdefault(AcDb::kLnWt025),
- m_hpassoc(1)
- {
- }
- // ATTDIA
- inline bool AcDbAppSystemVariables::attdia() const
- {
- return m_attdia;
- }
- // ATTREQ
- inline bool AcDbAppSystemVariables::attreq() const
- {
- return m_attreq;
- }
- // BLIPMODE
- inline bool AcDbAppSystemVariables::blipmode() const
- {
- return m_blipmode;
- }
- // COORDS
- inline Adesk::Int16 AcDbAppSystemVariables::coords() const
- {
- return m_coords;
- }
- // STATUSBAR
- inline Adesk::Int16 AcDbAppSystemVariables::statusbar() const
- {
- return m_statusbar;
- }
- // MENUBAR
- inline bool AcDbAppSystemVariables::menubar() const
- {
- return m_menubar;
- }
- // APPSTATUSBARUSEICONS
- inline bool AcDbAppSystemVariables::appstatusbaruseicons() const
- {
- return m_appstatusbaruseicons;
- }
- // DELOBJS
- inline Adesk::Int16 AcDbAppSystemVariables::delUsedObj() const
- {
- return m_delobj;
- }
- // DRAGMODE
- inline Adesk::Int16 AcDbAppSystemVariables::dragmode() const
- {
- return m_dragmode;
- }
- // OSMODE
- inline Adesk::Int16 AcDbAppSystemVariables::osmode() const
- {
- return m_osmode;
- }
- // PICKSTYLE
- inline Adesk::Int16 AcDbAppSystemVariables::pickstyle() const
- {
- return m_pkstyle;
- }
- // LWDEFAULT
- inline AcDb::LineWeight AcDbAppSystemVariables::lwdefault() const
- {
- return m_lwdefault;
- }
- // HPASSOC
- inline bool AcDbAppSystemVariables::hpassoc() const
- {
- return m_hpassoc;
- }
- #pragma pack (pop)
- #endif // ACAPPSVAR_H
|