mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-27 23:34:06 +00:00
31 lines
535 B
C++
31 lines
535 B
C++
|
/* This file is (c) 2008-2009 Konstantin Isakov <ikm@users.sf.net>
|
||
|
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
|
||
|
|
||
|
#ifndef __SOURCES_HH_INCLUDED__
|
||
|
#define __SOURCES_HH_INCLUDED__
|
||
|
|
||
|
#include "ui_sources.h"
|
||
|
#include "config.hh"
|
||
|
|
||
|
class Sources: public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
Sources( QWidget * parent, Config::Paths const & );
|
||
|
|
||
|
Config::Paths const & getPaths() const
|
||
|
{ return paths; }
|
||
|
|
||
|
private:
|
||
|
Ui::Sources ui;
|
||
|
Config::Paths paths;
|
||
|
|
||
|
private slots:
|
||
|
|
||
|
void add();
|
||
|
void remove();
|
||
|
};
|
||
|
|
||
|
#endif
|