{-# OPTIONS -fglasgow-exts #-} ----------------------------------------------------------------------------- {-| Program : prim1.hs Copyright : (c) David Harley 2010 Project : qtHaskell Version : 1.1.4 Modified : 2010-09-02 17:02:45 Warning : this file is machine generated - do not modify. --} ----------------------------------------------------------------------------- module Main where import Qtc.Classes.Qccs import Qtc.Classes.Gui import Qtc.Gui.Base import Qtc.Gui.QApplication import Qtc.Gui.QWidget import Qtc.Gui.QPushButton main :: IO Int main = do qApplication () hello <- qPushButton "Hello qtHaskell World" resize hello (200::Int, 60::Int) qshow hello () qApplicationExec ()