OWLNext    7.0
Borland's Object Windows Library for the modern age
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
psview.cpp
Go to the documentation of this file.
1//----------------------------------------------------------------------------
2// ObjectWindows
3// OWL NExt
4// Copyright � 1999 by Yura Bidus . All Rights Reserved.
5//
6/// \file
7/// Source file for implementation of TPaneSplitterView (TPaneSplitter).
8//
9//----------------------------------------------------------------------------
10#include <owl/pch.h>
11
12#include <owl/doctpl.h>
13#include <owl/psview.h>
14
15
16namespace owl {
17
18//{{TPaneSplitterView Implementation}}
19
20//
21// Build a response table for all messages/commands handled
22// by TPaneSplitterView derived from TPaneSplitter.
23//
24DEFINE_RESPONSE_TABLE1(TPaneSplitterView, TPaneSplitter)
27
28
29//--------------------------------------------------------
30// TPaneSplitterView
31//
33:
34 TPaneSplitter(parent,_T(""),0,doc.GetTemplate()->GetModule()),
35 TView(doc)
36{
37 // INSERT>> Your constructor code here.
38}
39//
41{
42 // INSERT>> Your destructor code here.
43}
44
45} // OWL namespace
46
47
48//==============================================================================
An abstract base class, TDocument is the base class for all document objects and serves as an interfa...
Definition docview.h:187
TPaneSplitter is a class that acts as a container for child windows (called panes) and splitters (pan...
Definition panespli.h:52
virtual ~TPaneSplitterView()
Definition psview.cpp:40
TPaneSplitterView(TDocument &doc, TWindow *parent=0)
Definition psview.cpp:32
Abstract base class for view access from document.
Definition docview.h:397
TWindow, derived from TEventHandler and TStreamableBase, provides window-specific behavior and encaps...
Definition window.h:414
#define _T(x)
Definition cygwin.h:51
Definition of class TDocTemplate, and class template TDocTemplateT<D,V>
#define DEFINE_RESPONSE_TABLE1(cls, base)
Macro to define a response table for a class with one base.
Definition eventhan.h:492
Object Windows Library (OWLNext Core)
Definition animctrl.h:22
EV_VN_ISWINDOW
Definition commview.cpp:26
END_RESPONSE_TABLE
Definition button.cpp:26
Class definition for TPaneSplitterView (TPaneSplitter, TView).