~s-cecilio/lomse/master

« back to all changes in this revision

Viewing changes to include/lomse_content_layouter.h

  • Committer: cecilios
  • Date: 2010-10-10 13:35:19 UTC
  • Revision ID: git-v1:2b333198c3033525d15763b84eaf79dac9fdab80
Preparing to use CMake. Updating with new code and missing files. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//--------------------------------------------------------------------------------------
 
2
//  This file is part of the Lomse library.
 
3
//  Copyright (c) 2010 Lomse project
 
4
//
 
5
//  Lomse is free software; you can redistribute it and/or modify it under the
 
6
//  terms of the GNU General Public License as published by the Free Software Foundation,
 
7
//  either version 3 of the License, or (at your option) any later version.
 
8
//
 
9
//  Lomse is distributed in the hope that it will be useful, but WITHOUT ANY
 
10
//  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
11
//  PARTICULAR PURPOSE.  See the GNU General Public License for more details.
 
12
//
 
13
//  You should have received a copy of the GNU General Public License along
 
14
//  with Lomse; if not, see <http://www.gnu.org/licenses/>.
 
15
//  
 
16
//  For any comment, suggestion or feature request, please contact the manager of
 
17
//  the project at cecilios@users.sourceforge.net
 
18
//
 
19
//-------------------------------------------------------------------------------------
 
20
 
 
21
#ifndef __LOMSE_CONTENT_LAYOUTER_H__        //to avoid nested includes
 
22
#define __LOMSE_CONTENT_LAYOUTER_H__
 
23
 
 
24
//#include <sstream>
 
25
//
 
26
//using namespace std;
 
27
 
 
28
namespace lomse
 
29
{
 
30
 
 
31
//forward declarations
 
32
class ImoDocObj;
 
33
class GmoBox;
 
34
 
 
35
 
 
36
// ContentLayouter
 
37
// Abstract class to implement the layout algorithm for any document content item.
 
38
//----------------------------------------------------------------------------------
 
39
class ContentLayouter
 
40
{
 
41
protected:
 
42
    ImoDocObj* m_pImo;
 
43
 
 
44
public:
 
45
    ContentLayouter(ImoDocObj* pImo) : m_pImo(pImo) {}
 
46
    virtual ~ContentLayouter() {}
 
47
 
 
48
    virtual void do_layout(GmoBox* pContainerBox) = 0;
 
49
};
 
50
 
 
51
 
 
52
//----------------------------------------------------------------------------------
 
53
class NullLayouter : public ContentLayouter
 
54
{
 
55
protected:
 
56
 
 
57
public:
 
58
    NullLayouter(ImoDocObj* pImo) : ContentLayouter(pImo) {}
 
59
    ~NullLayouter() {}
 
60
 
 
61
    void do_layout(GmoBox* pContainerBox) {}
 
62
};
 
63
 
 
64
 
 
65
}   //namespace lomse
 
66
 
 
67
#endif    // __LOMSE_CONTENT_LAYOUTER_H__
 
68