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

FXTranslator.h
1 /********************************************************************************
2 * *
3 * M e s s a g e T r a n s l a t o r *
4 * *
5 *********************************************************************************
6 * Copyright (C) 2005,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 FXTRANSLATOR_H
22 #define FXTRANSLATOR_H
23 
24 #ifndef FXOBJECT_H
25 #include "FXObject.h"
26 #endif
27 
28 
30 
31 
32 namespace FX {
33 
34 
38 class FXAPI FXTranslator : public FXObject {
39  FXDECLARE(FXTranslator)
40 private:
41  FXTranslator(const FXTranslator&);
42  FXTranslator &operator=(const FXTranslator&);
43 public:
44 
46  FXTranslator();
47 
49  virtual const FXchar* tr(const FXchar* context,const FXchar* message,const FXchar* hint=nullptr,FXint count=-1) const FX_FORMAT(2) ;
50 
52  virtual void save(FXStream& store) const;
53 
55  virtual void load(FXStream& store);
56 
58  virtual ~FXTranslator();
59  };
60 
61 
62 }
63 
64 #endif
The translator class translates a message to another language.
Definition: FXTranslator.h:38
A stream is a way to serialize data and objects into a byte stream.
Definition: FXStream.h:81
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