UNIVERS  15.3
UNIVERS base processing software API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
zq_coord_marker_inline.hpp
1 /* zq_coord_marker_inline.hpp */
2 /* $Id: zq_coord_marker_inline.hpp,v 1.1 2005/11/14 12:26:46 vlad Exp $ */
3 #ifndef __zq_coord_marker_inline_hpp
4 #define __zq_coord_marker_inline_hpp
5 
6 #ifdef __zq_coord_marker_hpp
7 #define INLINE inline
8 #else
9 #define INLINE
10 #endif /* __zq_coord_marker_hpp */
11 
12 
13 
14 /*
15  * Properties
16  */
17 
22 INLINE void
23 ZqCoordMarker::setPen (const QPen& pen)
24 {
25  m_qPen = pen;
26 }
27 
28 
33 INLINE const QPen&
35 {
36  return m_qPen;
37 }
38 
39 
44 INLINE QPen&
46 {
47  return m_qPen;
48 }
49 
50 
55 INLINE void
56 ZqCoordMarker::setOrientation (Qt::Orientation eOrient)
57 {
58  m_eOrient = eOrient;
59 }
60 
61 
66 INLINE Qt::Orientation
68 {
69  return m_eOrient;
70 }
71 
72 
73 #endif /* zq_coord_marker_inline.hpp */
virtual void setPen(const QPen &pen)
Definition: zq_coord_marker_inline.hpp:23
virtual void setOrientation(Qt::Orientation eOrient)
Definition: zq_coord_marker_inline.hpp:56
QPen m_qPen
Definition: zq_coord_marker.hpp:159
virtual const QPen & getPen() const
Definition: zq_coord_marker_inline.hpp:34
Qt::Orientation m_eOrient
Definition: zq_coord_marker.hpp:163
virtual Qt::Orientation getOrientation() const
Definition: zq_coord_marker_inline.hpp:67
virtual QPen & pen()
Definition: zq_coord_marker_inline.hpp:45