~ubuntu-branches/debian/squeeze/sword/squeeze

« back to all changes in this revision

Viewing changes to include/swdisprtfchap.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Glassey
  • Date: 2004-01-15 15:50:07 UTC
  • Revision ID: james.westby@ubuntu.com-20040115155007-n9mz4x0zxrs1isd3
Tags: upstream-1.5.7
ImportĀ upstreamĀ versionĀ 1.5.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/******************************************************************************
 
2
 *  swdisprtfchap.h     - definition of class SWDispRTFChap, an SWDisplay used to
 
3
 *                              display an entire chapter in Rich Text Format
 
4
 *
 
5
 * $Id: swdisprtfchap.h,v 1.5 2002/07/30 11:33:17 scribe Exp $
 
6
 *
 
7
 * Copyright 1998 CrossWire Bible Society (http://www.crosswire.org)
 
8
 *      CrossWire Bible Society
 
9
 *      P. O. Box 2528
 
10
 *      Tempe, AZ  85280-2528
 
11
 *
 
12
 * This program is free software; you can redistribute it and/or modify it
 
13
 * under the terms of the GNU General Public License as published by the
 
14
 * Free Software Foundation version 2.
 
15
 *
 
16
 * This program is distributed in the hope that it will be useful, but
 
17
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 
18
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
19
 * General Public License for more details.
 
20
 *
 
21
 */
 
22
 
 
23
//---------------------------------------------------------------------------
 
24
#ifndef swdisprtfchapH
 
25
#define swdisprtfchapH
 
26
//---------------------------------------------------------------------------
 
27
#include <vcl\SysUtils.hpp>
 
28
#include <vcl\Controls.hpp>
 
29
#include <vcl\Classes.hpp>
 
30
#include <vcl\Forms.hpp>
 
31
#include <vcl\ComCtrls.hpp>
 
32
#include <vcl\StdCtrls.hpp>
 
33
#include <swtext.h>
 
34
#include <swdisprtf.h>
 
35
//---------------------------------------------------------------------------
 
36
class SWDispRTFChap_init;
 
37
class SWDispRTFChap:public SWDispRTF {
 
38
protected:
 
39
        virtual void __fastcall Loaded (void);
 
40
public:
 
41
        static char platformID;
 
42
        static SWDispRTFChap_init _init;
 
43
        
 
44
    __fastcall SWDispRTFChap(TWinControl *Owner);
 
45
    __fastcall ~ SWDispRTFChap();
 
46
 
 
47
        virtual char Display(SWModule & imodule);
 
48
};
 
49
 
 
50
//---------------------------------------------------------------------------
 
51
#endif