Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members

FXDelegator.h
1 /********************************************************************************
2 * *
3 * D e l e g a t o r T a r g e t *
4 * *
5 *********************************************************************************
6 * Copyright (C) 2000,2022 by Jeroen van der Zijp. All Rights Reserved. *
7 *********************************************************************************
8 * This library is free software; you can redistribute it and/or modify *
9 * it under the terms of the GNU Lesser General Public License as published by *
10 * the Free Software Foundation; either version 3 of the License, or *
11 * (at your option) any later version. *
12 * *
13 * This library is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU Lesser General Public License for more details. *
17 * *
18 * You should have received a copy of the GNU Lesser General Public License *
19 * along with this program. If not, see <http://www.gnu.org/licenses/> *
20 ********************************************************************************/
21 #ifndef FXDELEGATOR_H
22 #define FXDELEGATOR_H
23 
24 #ifndef FXOBJECT_H
25 #include "FXObject.h"
26 #endif
27 
28 namespace FX {
29 
30 
40 class FXAPI FXDelegator : public FXObject {
41  FXDECLARE(FXDelegator)
42 protected:
43  FXObject *delegate;
44 private:
45  FXDelegator(const FXDelegator&);
46  FXDelegator &operator=(const FXDelegator&);
47 public:
48  virtual long onDefault(FXObject*,FXSelector,void*);
49 public:
50 
52  FXDelegator(FXObject* target=nullptr):delegate(target){ }
53 
55  FXObject* getDelegate() const { return delegate; }
56 
58  void setDelegate(FXObject* target){ delegate=target; }
59 
61  virtual ~FXDelegator(){ delegate=(FXObject*)-1L; }
62  };
63 
64 }
65 
66 #endif
A delegator forwards messages to a delegate object.
Definition: FXDelegator.h:40
void setDelegate(FXObject *target)
Change delegate object.
Definition: FXDelegator.h:58
virtual ~FXDelegator()
Always trash during detroy.
Definition: FXDelegator.h:61
FXObject * getDelegate() const
Return delegate object.
Definition: FXDelegator.h:55
FXDelegator(FXObject *target=nullptr)
Construct a delegator.
Definition: FXDelegator.h:52
Definition: FX4Splitter.h:28
Object is the base class for all objects in FOX; in order to receive messages from the user interface...
Definition: FXObject.h:134

Copyright © 1997-2022 Jeroen van der Zijp