~ubuntu-branches/debian/jessie/ugene/jessie

« back to all changes in this revision

Viewing changes to src/core/src/util_gui/BaseDocumentFormatConfigurators.h

  • Committer: Package Import Robot
  • Author(s): Steffen Moeller
  • Date: 2011-11-02 13:29:07 UTC
  • mfrom: (1.2.1) (3.1.11 natty)
  • Revision ID: package-import@ubuntu.com-20111102132907-o34gwnt0uj5g6hen
Tags: 1.9.8+repack-1
* First release to Debian
  - added README.Debian
  - increased policy version to 3.9.2
  - added URLs for version control system
* Added debug package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*****************************************************************
2
 
* Unipro UGENE - Integrated Bioinformatics Suite
3
 
* Copyright (C) 2008 Unipro, Russia (http://ugene.unipro.ru)
4
 
* All Rights Reserved
5
 
6
 
*     This source code is distributed under the terms of the
7
 
*     GNU General Public License. See the files COPYING and LICENSE
8
 
*     for details.
9
 
*****************************************************************/
10
 
 
11
 
#ifndef _GB2_BASE_DOC_FORMAT_CONFIG_H_
12
 
#define _GB2_BASE_DOC_FORMAT_CONFIG_H_
13
 
 
14
 
#include <core_api/core_api.h>
15
 
#include <core_api/DocumentFormatConfigurators.h>
16
 
 
17
 
namespace GB2 {
18
 
 
19
 
class GB2_COREAPI_EXPORT BaseDocumentFormatConfigurators  {
20
 
public:
21
 
    static void initBuiltInConfigurators();
22
 
 
23
 
    static void loadDefaultFormatSettings(const DocumentFormatId& format, QVariantMap& formatSettings);
24
 
    static void saveDefaultFormatSettings(const DocumentFormatId& format, const QVariantMap& formatSettings);
25
 
 
26
 
};
27
 
 
28
 
class GB2_COREAPI_EXPORT MultiPartDocFormatConfigurator : public DocumentFormatConfigurator {
29
 
    Q_OBJECT
30
 
public:
31
 
    MultiPartDocFormatConfigurator(DocumentFormatId id) : DocumentFormatConfigurator(id) {};
32
 
 
33
 
    virtual void configure(QVariantMap& info);
34
 
 
35
 
 
36
 
};
37
 
 
38
 
 
39
 
}//namespace
40
 
#endif