Module cSigCJDockingPane_Container.pkg
1//==============================================================================
2// Project : SigCj - VDF Classes for Codejock
3// File : cSigCJDockingPane_Container.pkg
4// Description : VDF Class for Codejock control
5//
6// Revision : $Rev: 599 $
7// $Date: 2010-02-14 22:39:01 +0100 (Sun, 14 Feb 2010) $
8// $Author: Martin $ Martin Pincott
9//
10// Requirements : Visual DataFlex 12.1+
11// Codejock SuitePro - Version 12.0.0+
12//
13// Copyright : (c) 2010 VDF SIG UK
14// Visual DataFlex Special Interest Group UK.
15// http://www.vdfsig.co.uk/
16// dev@vdfsig.co.uk
17//
18// This file is part of SigCj.
19//
20// SigCj is free software: you can redistribute it and/or modify
21// it under the terms of the GNU Lesser General Public License
22// as published by the Free Software Foundation, either version
23// 2.1 of the License, or (at your option) any later version.
24//
25// SigCj is distributed in the hope that it will be useful, but
26// WITHOUT ANY WARRANTY; without even the implied warranty of
27// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28// GNU Lesser General Public License for more details.
29//
30// If you have the complete SigCj workspace then a copy of the
31// GNU Lesser General Public License is in the Docs folder. If
32// not, see <http://www.gnu.org/licenses/>.
33//
34//==============================================================================
35// Contributions
36// =============
37//
38// When Who What
39// ========== ============ =====================================================
40// 2010-02-13 Nick Wright Added Full Class Support - Original Implementation
41// 2010-02-14 Pieter van Dieren Improvements
42//
43//==============================================================================
44Use Dfclient.pkg
45
46{ DesignerClass = cDTView }
47{ OverrideProperty=Border_Style InitialValue=Border_None }
48{ DDOHost=True } // This allows you to maintain your DDO structure in the studio as well.
49Class cSigCJDockingPane_Container is a dbContainer3d
50
51 // Construct_Object
52 Procedure Construct_Object
53 Forward Send Construct_Object
54 Set Location to 0 0
55 Set Border_Style to Border_None
56 Set peAnchors to anAll
57 End_Procedure
58
59 Procedure End_Construct_Object
60 Forward Send End_Construct_Object
61 End_Procedure
62
63 Procedure Activating
64 Set location to -1000 -1000
65 Forward Send Activating
66 End_Procedure
67End_Class