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.
		
		
		
		
		
			
		
			
				
					
					
						
							24 lines
						
					
					
						
							381 B
						
					
					
				
			
		
		
	
	
							24 lines
						
					
					
						
							381 B
						
					
					
				#pragma once
 | 
						|
 | 
						|
#include <QWidget>
 | 
						|
 | 
						|
 | 
						|
// TODO: this is defined in python too
 | 
						|
#define LATEST_TERMS_VERSION "2"
 | 
						|
#define LATEST_TRAINING_VERSION "0.2.0"
 | 
						|
 | 
						|
class OnboardingWindow : public QWidget {
 | 
						|
  Q_OBJECT
 | 
						|
 | 
						|
public:
 | 
						|
  explicit OnboardingWindow(QWidget *parent = 0);
 | 
						|
 | 
						|
signals:
 | 
						|
  void onboardingDone();
 | 
						|
 | 
						|
private:
 | 
						|
  QWidget * terms_screen();
 | 
						|
 | 
						|
private slots:
 | 
						|
  void updateActiveScreen();
 | 
						|
};
 | 
						|
 |