Class: PrincipaleControleur

Inherits:
Controller show all
Defined in:
app/controller/PrincipaleControleur.rb

Overview

Classe permettant de créer un contrôleur pour la vue FenetrePrincipale

Instance Method Summary collapse

Methods inherited from Controller

inherited, #loadFile, #loadModel, #render, #set_properties

Constructor Details

#initializePrincipaleControleur

Initialize



16
17
18
19
20
# File 'app/controller/PrincipaleControleur.rb', line 16

def initialize ()
	#paramètres fenêtre
	@title = "Sudoku"
	@resizable = false
end

Instance Method Details

#runObject

Méthode à définir dans tous les cas !

Returns:

  • self



27
28
29
# File 'app/controller/PrincipaleControleur.rb', line 27

def run()
	return self
end