mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-01 14:40:28 +00:00
f5c958ad73
This should wrap gettext nicely and replace the "_()" macros we use in C code. Also added comments to the top of all the new files. Suggested-by: Thiago Macieira <thiago@macieira.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
41 lines
579 B
C++
41 lines
579 B
C++
/*
|
|
* maintab.h
|
|
*
|
|
* header file for the main tab of Subsurface
|
|
*
|
|
*/
|
|
#ifndef MAINTAB_H
|
|
#define MAINTAB_H
|
|
|
|
#include <QTabWidget>
|
|
#include <QDialog>
|
|
|
|
#include "models.h"
|
|
|
|
namespace Ui
|
|
{
|
|
class MainTab;
|
|
}
|
|
|
|
class MainTab : public QTabWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
MainTab(QWidget *parent);
|
|
void clearStats();
|
|
void clearInfo();
|
|
void clearEquipment();
|
|
void reload();
|
|
|
|
public Q_SLOTS:
|
|
void on_addCylinder_clicked();
|
|
void on_editCylinder_clicked();
|
|
void on_delCylinder_clicked();
|
|
|
|
private:
|
|
Ui::MainTab *ui;
|
|
WeightModel *weightModel;
|
|
CylindersModel *cylindersModel;
|
|
};
|
|
|
|
#endif
|