mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Added completion for buddy, divemaster, location and suit.
Added completion for buddy, divemaster, location and suit. The completions uses some models that I created in the last commit - everytime that a divelog file is loaded, it creates a list of completion items. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
This commit is contained in:
parent
84f73a5fb1
commit
6da2d40d3c
2 changed files with 26 additions and 0 deletions
|
@ -12,6 +12,8 @@
|
|||
|
||||
#include "models.h"
|
||||
|
||||
class QCompleter;
|
||||
|
||||
namespace Ui
|
||||
{
|
||||
class MainTab;
|
||||
|
@ -27,6 +29,13 @@ struct NotesBackup{
|
|||
QString divemaster;
|
||||
};
|
||||
|
||||
struct Completers{
|
||||
QCompleter *location;
|
||||
QCompleter *divemaster;
|
||||
QCompleter *buddy;
|
||||
QCompleter *suit;
|
||||
};
|
||||
|
||||
class MainTab : public QTabWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
@ -72,6 +81,7 @@ private:
|
|||
QPushButton *addCylinder;
|
||||
QPushButton *addWeight;
|
||||
enum { NONE, DIVE, TRIP } editMode;
|
||||
Completers completers;
|
||||
void enableEdition();
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue