COVISE Core
coGRSetDocPageSizeMsg.h
Go to the documentation of this file.
1/* This file is part of COVISE.
2
3 You can use it under the terms of the GNU Lesser General Public License
4 version 2.1 or later, see lgpl-2.1.txt.
5
6 * License: LGPL 2+ */
7
8//-*-Mode: C++;-*-
9// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
10// ++ (C)2008 VISENSO ++
11// ++ coGRSendDocNumbersMsg - sends min and may mumber of pages to GUI ++
12// ++ ++
13// ++ ++
14// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
15
16#ifndef COGRSETDOCPAGESIZE_H
17#define COGRSETDOCPAGESIZE_H
18
19#include "coGRDocMsg.h"
20#include <util/coExport.h>
21
22namespace grmsg
23{
24
26{
27public:
28 // construct msg to send
29 coGRSetDocPageSizeMsg(const char *document_name, int pageNo, float hsize, float vsize);
30
31 // reconstruct from received msg
32 coGRSetDocPageSizeMsg(const char *msg);
33
34 // specific functions
35 float getHSize()
36 {
37 return hSize_;
38 };
39 float getVSize()
40 {
41 return vSize_;
42 };
44 {
45 return pageNo_;
46 };
47
48private:
49 float hSize_, vSize_;
51};
52}
53#endif
#define GRMSGEXPORT
Definition: coExport.h:349
Definition: coGRActivatedViewpointMsg.h:23
Definition: coGRDocMsg.h:26
Definition: coGRSetDocPageSizeMsg.h:26
int pageNo_
Definition: coGRSetDocPageSizeMsg.h:50
float getVSize()
Definition: coGRSetDocPageSizeMsg.h:39
int getPageNo()
Definition: coGRSetDocPageSizeMsg.h:43
float getHSize()
Definition: coGRSetDocPageSizeMsg.h:35
float hSize_
Definition: coGRSetDocPageSizeMsg.h:46