VirtualBox

source: vbox/trunk/src/VBox/Main/include/QMTranslator.h@ 75488

Last change on this file since 75488 was 69500, checked in by vboxsync, 7 years ago

*: scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.8 KB
Line 
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
21class QMTranslator_Impl;
22
23class QMTranslator
24{
25public:
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
46private:
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: */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette