1 | /* $Id: QMTranslator.h 69500 2017-10-28 15:14:05Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VirtualBox API translation handling class
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2014-2017 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #ifndef ____H_QMTRANSLATOR
|
---|
19 | #define ____H_QMTRANSLATOR
|
---|
20 |
|
---|
21 | class QMTranslator_Impl;
|
---|
22 |
|
---|
23 | class QMTranslator
|
---|
24 | {
|
---|
25 | public:
|
---|
26 | QMTranslator();
|
---|
27 | virtual ~QMTranslator();
|
---|
28 |
|
---|
29 | /* Gets translation from loaded QM file
|
---|
30 | *
|
---|
31 | * @param context QM context to look for translation
|
---|
32 | * @param source Source string in one-byte encoding
|
---|
33 | * @param disamb Disambiguationg comment, empty by default
|
---|
34 | *
|
---|
35 | * @returns Pointer to a translation in UTF-8 encoding, empty string on failure */
|
---|
36 |
|
---|
37 | const char *translate(const char *pszContext, const char *pszSource, const char *pszDisamb = "") const throw();
|
---|
38 |
|
---|
39 | /* Loads and parses QM file
|
---|
40 | *
|
---|
41 | * @param filename The name of the file to load
|
---|
42 | *
|
---|
43 | * @returns VINF_SUCCESS if successful */
|
---|
44 | int load(const char *pszFilename) throw();
|
---|
45 |
|
---|
46 | private:
|
---|
47 | /* QMTranslator implementation.
|
---|
48 | * To separate all the code from the interface */
|
---|
49 | QMTranslator_Impl *_impl;
|
---|
50 |
|
---|
51 | /* If copying is required, please define the following operators */
|
---|
52 | void operator=(QMTranslator &);
|
---|
53 | QMTranslator(const QMTranslator &);
|
---|
54 | };
|
---|
55 |
|
---|
56 | #endif /* !____H_QMTRANSLATOR */
|
---|
57 | /* vi: set tabstop=4 shiftwidth=4 expandtab: */
|
---|