mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
added comic vine dialog (empty)
This commit is contained in:
parent
c18e6a3e85
commit
2de876f5a9
@ -1,6 +1,10 @@
|
||||
#include "comic_vine_dialog.h"
|
||||
|
||||
ComicVineDialog::ComicVineDialog(QWidget *parent) :
|
||||
QDialog(parent)
|
||||
QDialog(parent)
|
||||
{
|
||||
setStyleSheet(""
|
||||
"QDialog {background-color: #404040; }"
|
||||
"");
|
||||
setFixedSize(672,529);
|
||||
}
|
||||
|
@ -5,14 +5,14 @@
|
||||
|
||||
class ComicVineDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit ComicVineDialog(QWidget *parent = 0);
|
||||
|
||||
explicit ComicVineDialog(QWidget *parent = 0);
|
||||
|
||||
signals:
|
||||
|
||||
|
||||
public slots:
|
||||
|
||||
|
||||
};
|
||||
|
||||
#endif // COMIC_VINE_DIALOG_H
|
||||
|
@ -55,6 +55,8 @@
|
||||
#include "comics_remover.h"
|
||||
#include "yacreader_library_list_widget.h"
|
||||
#include "yacreader_treeview.h"
|
||||
|
||||
#include "comic_vine_dialog.h"
|
||||
//#include "yacreader_social_dialog.h"
|
||||
//
|
||||
|
||||
@ -261,6 +263,7 @@ void LibraryWindow::doDialogs()
|
||||
createLibraryDialog = new CreateLibraryDialog(this);
|
||||
renameLibraryDialog = new RenameLibraryDialog(this);
|
||||
propertiesDialog = new PropertiesDialog(this);
|
||||
comicVineDialog = new ComicVineDialog(this);
|
||||
exportLibraryDialog = new ExportLibraryDialog(this);
|
||||
importLibraryDialog = new ImportLibraryDialog(this);
|
||||
exportComicsInfoDialog = new ExportComicsInfoDialog(this);
|
||||
@ -1415,7 +1418,7 @@ void LibraryWindow::showProperties()
|
||||
|
||||
void LibraryWindow::showComicVineScraper()
|
||||
{
|
||||
|
||||
comicVineDialog->show();
|
||||
}
|
||||
|
||||
void LibraryWindow::asignNumbers()
|
||||
|
@ -48,6 +48,7 @@ class YACReaderSideBar;
|
||||
class YACReaderLibraryListWidget;
|
||||
class YACReaderTreeView;
|
||||
class YACReaderMainToolBar;
|
||||
class ComicVineDialog;
|
||||
#include "comic_db.h"
|
||||
|
||||
using namespace YACReader;
|
||||
@ -68,6 +69,7 @@ private:
|
||||
HelpAboutDialog * had;
|
||||
RenameLibraryDialog * renameLibraryDialog;
|
||||
PropertiesDialog * propertiesDialog;
|
||||
ComicVineDialog * comicVineDialog;
|
||||
//YACReaderSocialDialog * socialDialog;
|
||||
bool fullscreen;
|
||||
bool importedCovers; //if true, the library is read only (not updates,open comic or properties)
|
||||
|
Loading…
Reference in New Issue
Block a user