summaryrefslogtreecommitdiffstats
path: root/qtruby/rubylib/examples/qt-examples/chart/main.rb
blob: db395a3e9dc797af02670f1fccc2dd9837119ede (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
require 'Qt'

require 'canvasview.rb'
require 'canvastext.rb'
require 'element.rb'
require 'chartform.rb'
require 'chartform_canvas.rb'
require 'chartform_files.rb'
require 'optionsform.rb'
require 'setdataform.rb'

app = Qt::Application.new( ARGV )

if app.ARGV.length > 0
    filename = app.ARGV[0]
    if filename.rindex( /.cht$/ ).nil?
	    filename = nil
    end
end

cf = ChartForm.new( filename )
app.mainWidget = cf
cf.show

app.exec