ff7tk  0.02
Toolkit for making FF7 Tools
SlotSelect.h
Go to the documentation of this file.
1 /****************************************************************************/
2 // copyright 2012 - 2016 Chris Rizzitello <sithlord48@gmail.com> //
3 // //
4 // This file is part of FF7tk //
5 // //
6 // FF7tk is free software: you can redistribute it and/or modify //
7 // it under the terms of the GNU General Public License as published by //
8 // the Free Software Foundation, either version 3 of the License, or //
9 // (at your option) any later version. //
10 // //
11 // FF7tk is distributed in the hope that it will be useful, //
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of //
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
14 // GNU General Public License for more details. //
15 /****************************************************************************/
16 #ifndef SLOTSELECT_H
17 #define SLOTSELECT_H
18 
19 #include "qglobal.h"
20 #if (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0))
21  #include <QtWidgets>
22 #else
23  #include <QtGui>
24 #endif
25 
26 #include <QFrame>
27 #include "../data/FF7Save.h"
28 #include "../data/FF7Char.h"
29 #include "SlotPreview.h"
30 
38 class SlotSelect : public QDialog
39 {
40  Q_OBJECT
41 public:
42 
49  explicit SlotSelect(qreal Scale=1,FF7Save *data=0,bool showLoad=false,QWidget *parent = 0);
50 private slots:
51  void button_clicked(int s);
52  void remove_slot(int s);
53  void copy_slot(int s);
54  void paste_slot(int s);
55  void newFile(void);
56 private:
57  void setSlotPreview(int s);
58  void showLoad(bool shown);
59  void ReIntSlot(int s);
60  QFrame *frm_preview;
61  QVBoxLayout *preview_layout;
62  QScrollArea *list_preview;
64  QPushButton *btnNew;
65  //Private Data
68  qreal scale;
69 };
70 
71 #endif // SLOTSELECT_H
void newFile(void)
Definition: SlotSelect.cpp:169
Preview a Single Slot on a Psx memory card or FF7 Save file.
Definition: SlotPreview.h:34
FF7Save * ff7
Definition: SlotSelect.h:66
Data and Enums for Characters in Final Fantasy 7.
Definition: FF7Char.h:28
QVBoxLayout * preview_layout
Definition: SlotSelect.h:61
qreal scale
Definition: SlotSelect.h:68
void showLoad(bool shown)
Definition: SlotSelect.cpp:174
FF7Char Chars
Definition: SlotSelect.h:67
void setSlotPreview(int s)
Definition: SlotSelect.cpp:110
void paste_slot(int s)
Definition: SlotSelect.cpp:82
edit saves from Final Fantasy 7
Definition: FF7Save.h:58
void remove_slot(int s)
Definition: SlotSelect.cpp:54
void copy_slot(int s)
Definition: SlotSelect.cpp:75
void button_clicked(int s)
Definition: SlotSelect.cpp:52
QScrollArea * list_preview
Definition: SlotSelect.h:62
SlotPreview * preview[15]
Definition: SlotSelect.h:63
SlotSelect(qreal Scale=1, FF7Save *data=0, bool showLoad=false, QWidget *parent=0)
create a new SlotSelect Dialog.
Definition: SlotSelect.cpp:18
Display a preview of the contents of a PSX memory card file or FF7 PC save.
Definition: SlotSelect.h:38
QFrame * frm_preview
Definition: SlotSelect.h:60
QPushButton * btnNew
Definition: SlotSelect.h:64
void ReIntSlot(int s)
Definition: SlotSelect.cpp:102