You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							25 lines
						
					
					
						
							443 B
						
					
					
				
			
		
		
	
	
							25 lines
						
					
					
						
							443 B
						
					
					
				| #pragma once
 | |
| 
 | |
| #include <QWidget>
 | |
| #include <QStackedWidget>
 | |
| 
 | |
| // TODO: this is defined in python too
 | |
| #define LATEST_TERMS_VERSION "2"
 | |
| #define LATEST_TRAINING_VERSION "0.2.0"
 | |
| 
 | |
| class OnboardingWindow : public QStackedWidget {
 | |
|   Q_OBJECT
 | |
| 
 | |
| public:
 | |
|   explicit OnboardingWindow(QWidget *parent = 0);
 | |
| 
 | |
| private:
 | |
|   QWidget * terms_screen();
 | |
|   QWidget * training_screen();
 | |
| 
 | |
| signals:
 | |
|   void onboardingDone();
 | |
| 
 | |
| public slots:
 | |
|   void updateActiveScreen();
 | |
| };
 | |
| 
 |