mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	An attempt at limitting accesses to the globals current_dive and dc_number. These globals do not make sense on mobile. The parent widget of the tab-widgets remembers the currently displayer dive and dive computer and the individual widgets access these values from there. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
		
			
				
	
	
		
			45 lines
		
	
	
	
		
			976 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
	
		
			976 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| /*
 | |
|  * maintab.h
 | |
|  *
 | |
|  * header file for the main tab of Subsurface
 | |
|  *
 | |
|  */
 | |
| #ifndef MAINTAB_H
 | |
| #define MAINTAB_H
 | |
| 
 | |
| #include <QTabWidget>
 | |
| 
 | |
| #include "core/dive.h"
 | |
| #include "core/subsurface-qt/divelistnotifier.h"
 | |
| 
 | |
| class TabBase;
 | |
| class MainTab : public QTabWidget {
 | |
| 	Q_OBJECT
 | |
| public:
 | |
| 	MainTab(QWidget *parent = 0);
 | |
| 	void clearTabs();
 | |
| 	void nextInputField(QKeyEvent *event);
 | |
| 	void stealFocus();
 | |
| 	bool includesCurrentDive(const QVector<dive *> &dives) const;
 | |
| 	divecomputer *getCurrentDC() const;
 | |
| 
 | |
| 	dive *currentDive;
 | |
| 	int currentDC;
 | |
| public
 | |
| slots:
 | |
| 	// Always called with non-null currentDive
 | |
| 	void updateDiveInfo(const std::vector<dive *> &selection, dive *currentDive, int currentDC);
 | |
| 	void settingsChanged();
 | |
| 	void escDetected();
 | |
| 	void colorsChanged();
 | |
| private:
 | |
| 	bool lastSelectedDive;
 | |
| 	int lastTabSelectedDive;
 | |
| 	int lastTabSelectedDiveTrip;
 | |
| 	QList<TabBase*> extraWidgets;
 | |
| 	void changeEvent(QEvent *ev) override;
 | |
| 	bool isDark;
 | |
| };
 | |
| 
 | |
| #endif // MAINTAB_H
 |