arcadia 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README +13 -12
- data/arcadia.rb +23 -15
- data/base/a-contracts.rb +23 -6
- data/base/a-ext.rb +5 -85
- data/base/a-utils.rb +11 -6
- data/conf/arcadia.conf +30 -30
- data/ext/ae-complete-code/ae-complete-code.conf +6 -0
- data/ext/ae-complete-code/ae-complete-code.rb +79 -0
- data/ext/ae-debug/ae-debug.rb +101 -78
- data/ext/ae-editor/ae-editor.conf +11 -11
- data/ext/ae-editor/ae-editor.rb +175 -26
- data/ext/ae-event-log/ae-event-log.rb +23 -15
- data/ext/ae-file-history/ae-file-history.conf +4 -4
- data/ext/ae-file-history/ae-file-history.rb +23 -13
- data/ext/ae-inspector/ae-inspector.rb +4 -4
- data/ext/ae-output-event/ae-output-event.conf +4 -4
- data/ext/ae-output/ae-output.conf +4 -4
- data/ext/ae-output/ae-output.rb +16 -0
- data/ext/ae-palette/ae-palette.rb +4 -17
- data/ext/ae-shell/ae-shell.conf +3 -3
- data/lib/tk/al-tk.rb +26 -22
- metadata +16 -9
data/README
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
Arcadia Ruby Ide
|
2
|
-
version 0.1.
|
2
|
+
version 0.1.1
|
3
3
|
|
4
4
|
by Antonio Galeone
|
5
|
-
on
|
5
|
+
on Mar 31, 2007
|
6
6
|
|
7
7
|
"Thank you for consider this project"
|
8
8
|
|
@@ -20,14 +20,14 @@ Some of Arcadia ruby ide project features include:
|
|
20
20
|
|
21
21
|
This release
|
22
22
|
============
|
23
|
-
|
24
|
-
|
25
|
-
|
23
|
+
-[fixed] Bugs fixed
|
24
|
+
-[new] Added completion code support (Ctrl-space) based upon rcodetools package (must be installed)
|
25
|
+
-[modified] in file config the <OPERATING SYSTEM IDENTIFY> separator modified from <:> to <::>
|
26
26
|
|
27
27
|
Short User guide
|
28
28
|
================
|
29
29
|
I hope that you perceive Arcadia gui enough user frindly.
|
30
|
-
As you can see the application is splitted in
|
30
|
+
As you can see the application is splitted in vertical
|
31
31
|
and horizontal resizing frames. Clicking on vertical splitter
|
32
32
|
appear two button for left or right one shot frame close.
|
33
33
|
The horizontal splitter has two little button for the same reason
|
@@ -56,6 +56,7 @@ Ctrl-x => cut selected text
|
|
56
56
|
Ctrl-z => undo
|
57
57
|
Ctrl-f => copy the selected text on input combobox of find bar and moves focus
|
58
58
|
Ctrl-s => save
|
59
|
+
Ctrl-space => completion code
|
59
60
|
Ctrl-shift-i => indent the selected block
|
60
61
|
Ctrl-shift-u => unindent the selected block
|
61
62
|
Ctrl-shift-c => comment/uncomment the selected code block
|
@@ -69,11 +70,11 @@ The last used files are organizing in tree so you can reopen them or there
|
|
69
70
|
directory by clicking on the tree node.
|
70
71
|
|
71
72
|
< Palette >
|
72
|
-
It
|
73
|
+
It contain the wrapper components for the tk gui building.
|
73
74
|
It is in very unstabled and incomplete state.
|
74
75
|
The first component is a TkTopLevel wrapper, when you click on it a new form is created and a
|
75
76
|
Object inspector appears.
|
76
|
-
The other
|
77
|
+
The other components must be first selected and then created by clicking on container widget.
|
77
78
|
The so created widgets has a popup menu for deleting them or in the toplevel case to switch
|
78
79
|
to a code view.
|
79
80
|
On the palette there are also two button, one for deselect and other for copy from the selected
|
@@ -92,15 +93,15 @@ step. (you must have patience!)
|
|
92
93
|
<Configuration>
|
93
94
|
Same Arcadia properties are locally configurabled by editing the file arcadia.conf
|
94
95
|
under ~/.arcadia directory. The format of property definition are:
|
95
|
-
<OPERATING SYSTEM IDENTIFY
|
96
|
+
<OPERATING SYSTEM IDENTIFY::>PROPERTY_NAME=PROPERTY_VALUE
|
96
97
|
|
97
98
|
|
98
99
|
Requirement
|
99
100
|
===========
|
100
101
|
I include into distribution also the BWidget lib (under tcl directory) so
|
101
102
|
are require realy only the standard tcl tk lib (tested on tcl tk 8.4).
|
102
|
-
I have tested arcadia with ruby 1.8.4
|
103
|
-
will test arcadia on other operating system sends me
|
103
|
+
I have tested arcadia with ruby 1.8.4, 1.8.5, 1.8.6 on FreeBsd6 and windows 2000/XP os. If you
|
104
|
+
will test arcadia on other operating system sends me an e-mail.
|
104
105
|
|
105
106
|
Developers information
|
106
107
|
=====================
|
@@ -119,4 +120,4 @@ For questions:
|
|
119
120
|
antonio-galeone@rubyforge.org
|
120
121
|
For bugs, support request, feature request https://rubyforge.org/projects/arcadia:
|
121
122
|
|
122
|
-
|
123
|
+
Bye
|
data/arcadia.rb
CHANGED
@@ -23,7 +23,7 @@ class Arcadia < TkApplication
|
|
23
23
|
super(
|
24
24
|
ApplicationParams.new(
|
25
25
|
'arcadia',
|
26
|
-
'0.1.
|
26
|
+
'0.1.1',
|
27
27
|
'conf/arcadia.conf',
|
28
28
|
'conf/arcadia.pers'
|
29
29
|
)
|
@@ -42,10 +42,13 @@ class Arcadia < TkApplication
|
|
42
42
|
@mf_root = Tk::BWidget::MainFrame.new(@root){
|
43
43
|
menu @main_menu
|
44
44
|
}.pack(
|
45
|
-
|
46
|
-
|
47
|
-
|
45
|
+
'anchor'=> 'center',
|
46
|
+
'fill'=> 'both',
|
47
|
+
'expand'=> 1
|
48
48
|
)
|
49
|
+
|
50
|
+
#.place('x'=>0,'y'=>0,'relwidth'=>1,'relheight'=>1)
|
51
|
+
@mf_root.show_statusbar('none')
|
49
52
|
@toolbar = @mf_root.add_toolbar
|
50
53
|
@mf_root.show_toolbar(1,true)
|
51
54
|
@splash = ArcadiaAboutSplash.new('... initialize')
|
@@ -291,15 +294,10 @@ class Arcadia < TkApplication
|
|
291
294
|
@splash.next_step('...initialize')
|
292
295
|
@layout = ArcadiaLayout.new(self, @mf_root.get_frame)
|
293
296
|
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
@layout.add_cols(0,0,230)
|
299
|
-
@layout.add_rows(0,0,190)
|
300
|
-
#@layout.add_rows(0,1,80)
|
301
|
-
#@layout.add_rows(1,1,450)
|
302
|
-
@layout.add_rows(0,1,500)
|
297
|
+
@layout.add_cols(0,0,225)
|
298
|
+
@layout.add_rows(0,0,180)
|
299
|
+
# @layout.add_rows(0,1,500)
|
300
|
+
@layout.add_rows_perc(0,1,70)
|
303
301
|
|
304
302
|
|
305
303
|
@layout.add_headers
|
@@ -588,9 +586,9 @@ class ArcadiaLayout
|
|
588
586
|
end
|
589
587
|
end
|
590
588
|
|
591
|
-
def
|
589
|
+
def _prepare_rows(_row,_col, _height, _perc=false, _top_name=nil, _bottom_name=nil)
|
592
590
|
if (@frames[_row][_col] != nil)
|
593
|
-
_h = AGTkOSplittedFrames.new(@frames[_row][_col],_height)
|
591
|
+
_h = AGTkOSplittedFrames.new(@frames[_row][_col],_height, _perc)
|
594
592
|
if @frames[_row + 1] == nil
|
595
593
|
@frames[_row + 1] = Array.new
|
596
594
|
@domains[_row + 1] = Array.new
|
@@ -611,6 +609,16 @@ class ArcadiaLayout
|
|
611
609
|
@domains[_row + 1][_col] = _bottom_name
|
612
610
|
end
|
613
611
|
end
|
612
|
+
private :_prepare_rows
|
613
|
+
|
614
|
+
def add_rows(_row,_col, _height, _top_name=nil, _bottom_name=nil)
|
615
|
+
_prepare_rows(_row,_col, _height, false, _top_name, _bottom_name)
|
616
|
+
end
|
617
|
+
|
618
|
+
def add_rows_perc(_row,_col, _height, _top_name=nil, _bottom_name=nil)
|
619
|
+
_prepare_rows(_row,_col, _height, true, _top_name, _bottom_name)
|
620
|
+
end
|
621
|
+
|
614
622
|
|
615
623
|
def add_cols(_row,_col, _width, _left_name=nil, _right_name=nil)
|
616
624
|
if (@frames[_row][_col] != nil)
|
data/base/a-contracts.rb
CHANGED
@@ -21,6 +21,11 @@ class MainContract < ArcadiaContract
|
|
21
21
|
EXTENSION_FINALIZE = "EXTENSION_FINALIZE"
|
22
22
|
CONTRACT_RETRIVE = "CONTRACT_RETRIVE"
|
23
23
|
RAISE_EXTENSION = "RAISE_EXTENSION"
|
24
|
+
EVENT_HANDLED = "EVENT_HANDLED"
|
25
|
+
|
26
|
+
def event_handled(_tobj)
|
27
|
+
raise_event(EVENT_HANDLED, _tobj)
|
28
|
+
end
|
24
29
|
|
25
30
|
def extension_before_build(_tobj)
|
26
31
|
raise_event(EXTENSION_BEFORE_BUILD, _tobj)
|
@@ -43,7 +48,7 @@ end
|
|
43
48
|
|
44
49
|
class EditorContract < ArcadiaContract
|
45
50
|
class TEditorObj < TObj
|
46
|
-
attr_accessor :file, :line, :col, :title, :text
|
51
|
+
attr_accessor :file, :line, :col, :title, :text, :candidates
|
47
52
|
end
|
48
53
|
OPEN_FILE = "OPEN_FILE"
|
49
54
|
CLOSE_FILE = "CLOSE_FILE"
|
@@ -57,7 +62,8 @@ class EditorContract < ArcadiaContract
|
|
57
62
|
FILE_AFTER_OPEN = "FILE_AFTER_OPEN"
|
58
63
|
FILE_AFTER_CLOSE = "FILE_AFTER_CLOSE"
|
59
64
|
BUFFER_AFTER_RAISE = "BUFFER_AFTER_RAISE"
|
60
|
-
|
65
|
+
COMPLETE_CODE = "COMPLETE_CODE"
|
66
|
+
|
61
67
|
def open_file(_tobj)
|
62
68
|
raise_action(OPEN_FILE, _tobj)
|
63
69
|
end
|
@@ -70,6 +76,9 @@ class EditorContract < ArcadiaContract
|
|
70
76
|
raise_action(OPEN_TEXT, _tobj)
|
71
77
|
end
|
72
78
|
|
79
|
+
def complete_code(_tobj)
|
80
|
+
raise_action(COMPLETE_CODE, _tobj)
|
81
|
+
end
|
73
82
|
|
74
83
|
def file_opened(_tobj=nil)
|
75
84
|
raise_event(FILE_AFTER_OPEN, _tobj)
|
@@ -101,6 +110,7 @@ end
|
|
101
110
|
class MsgContract < ArcadiaContract
|
102
111
|
TYPE_SIMPLE = "TYPE_SIMPLE"
|
103
112
|
TYPE_DEBUG = "TYPE_DEBUG"
|
113
|
+
TYPE_ERROR = "TYPE_ERROR"
|
104
114
|
SObj = Struct.new("MsgState"
|
105
115
|
)
|
106
116
|
class TMsgObj < TObj
|
@@ -125,6 +135,13 @@ class MsgContract < ArcadiaContract
|
|
125
135
|
_tobj.text = _msg
|
126
136
|
self.out(_tobj)
|
127
137
|
end
|
138
|
+
|
139
|
+
def out_error(_sender, _msg, _channel=nil)
|
140
|
+
_tobj = TMsgObj.new(_sender, 'channel'=>_channel)
|
141
|
+
_tobj.type = TYPE_ERROR
|
142
|
+
_tobj.text = _msg
|
143
|
+
self.out(_tobj)
|
144
|
+
end
|
128
145
|
end
|
129
146
|
|
130
147
|
class ShellContract < ArcadiaContract
|
@@ -177,19 +194,19 @@ class InspectorContract < ArcadiaContract
|
|
177
194
|
REGISTER_WRAPPER = "REGISTER_WRAPPER"
|
178
195
|
# UPDATE_PROPERTY = "UPDATE_PROPERTY"
|
179
196
|
DELETE_INSPECTOR = "DELETE_INSPECTOR"
|
180
|
-
|
197
|
+
RAISE_LAST_WIDGET = "RAISE_LAST_WIDGET"
|
181
198
|
RAISE_ACTIVE_TOPLEVEL = "RAISE_ACTIVE_TOPLEVEL"
|
182
199
|
|
183
200
|
def delete_wrapper(_tobj=nil)
|
184
201
|
raise_action(DELETE_WRAPPER, _tobj)
|
185
202
|
end
|
186
203
|
|
187
|
-
def
|
188
|
-
raise_action(
|
204
|
+
def raise_last_widget(_tobj=nil)
|
205
|
+
raise_action(RAISE_LAST_WIDGET, _tobj)
|
189
206
|
end
|
190
207
|
|
191
208
|
def raise_active_toplevel(_tobj=nil)
|
192
|
-
raise_action(
|
209
|
+
raise_action(RAISE_ACTIVE_TOPLEVEL, _tobj)
|
193
210
|
end
|
194
211
|
|
195
212
|
def select(_tobj=nil)
|
data/base/a-ext.rb
CHANGED
@@ -137,8 +137,8 @@ class ArcadiaContract
|
|
137
137
|
@action = false
|
138
138
|
end
|
139
139
|
|
140
|
-
def handled(
|
141
|
-
|
140
|
+
def handled(_from)
|
141
|
+
MainContract.instance.event_handled(MainContract::TMainObj.new(_from,'caused_by'=>self))
|
142
142
|
end
|
143
143
|
|
144
144
|
def is_action?
|
@@ -148,6 +148,7 @@ class ArcadiaContract
|
|
148
148
|
|
149
149
|
class TObj
|
150
150
|
attr_reader :sender
|
151
|
+
attr_accessor :caused_by
|
151
152
|
attr_accessor :channel
|
152
153
|
DEFAULT_CHANNEL='0'
|
153
154
|
def initialize(_sender, _args=nil)
|
@@ -197,51 +198,13 @@ class ArcadiaContract
|
|
197
198
|
attr_reader :icon
|
198
199
|
def initialize(_method)
|
199
200
|
@method = @method
|
200
|
-
#TODO: load label and icon from config file
|
201
201
|
end
|
202
202
|
end
|
203
203
|
|
204
|
-
EVENT_HANDLED = "EVENT_HANDLED"
|
205
|
-
CONTRACT_CREATED = "CONTRACT_CREATED"
|
206
|
-
|
207
204
|
SObj = Struct.new("GenericState",
|
208
205
|
:caller
|
209
206
|
)
|
210
|
-
|
211
|
-
# :sender
|
212
|
-
# )
|
213
|
-
|
214
|
-
# def initialize(_sender=nil, _state_method=nil, _channel='0')
|
215
|
-
# @@instances = Array.new if !defined?(@@instances)
|
216
|
-
# #@@listeners_queue Array.new if !defined?(@@listeners_queue)
|
217
|
-
# @@instances << self
|
218
|
-
# @sender = _sender
|
219
|
-
# @state_method = _state_method
|
220
|
-
# @channel = _channel
|
221
|
-
# ObjectSpace.define_finalizer(self, self.class.method(:finalize).to_proc)
|
222
|
-
# #ArcadiaContract.source(self).raise_event(CONTRACT_CREATED, TObj.new(_sender))
|
223
|
-
# end
|
224
|
-
|
225
|
-
# def ArcadiaContract.instances
|
226
|
-
# @@instances
|
227
|
-
# end
|
228
|
-
|
229
|
-
# def ArcadiaContract.source(_sender=nil)
|
230
|
-
# if !defined?(@@source)
|
231
|
-
# (_sender==nil) ? @@source = ArcadiaContract.new : @@source = _sender
|
232
|
-
# end
|
233
|
-
# return @@source
|
234
|
-
# end
|
235
|
-
|
236
|
-
# def ArcadiaContract.finalize(id)
|
237
|
-
# raise_event(MainContract::EXTENSION_FINALIZE, id)
|
238
|
-
# end
|
239
|
-
|
240
|
-
# raise an event with event handled as context obj
|
241
|
-
def event_handled(_tobj)
|
242
|
-
raise_event(EVENT_HANDLED, _tobj)
|
243
|
-
end
|
244
|
-
|
207
|
+
|
245
208
|
def _event_forge(_event_signature, _tobj)
|
246
209
|
ContractEvent.new(self, _event_signature, _tobj)
|
247
210
|
end
|
@@ -271,15 +234,6 @@ class ArcadiaContract
|
|
271
234
|
end
|
272
235
|
private :_raise_action
|
273
236
|
|
274
|
-
|
275
|
-
|
276
|
-
# def retrieve_state(*args)
|
277
|
-
# unless @sender.respond_to? @state_method
|
278
|
-
# raise NoMethodError, self.class.to_s+" needs to respond to "+@state_method.to_s
|
279
|
-
# end
|
280
|
-
# return @sender.send(@state_method, *args)
|
281
|
-
# end
|
282
|
-
|
283
237
|
def ArcadiaContract.publish_action(_method)
|
284
238
|
_info = EventInfo.new(_method)
|
285
239
|
@@actions = Array.new if !defined?(@@actions)
|
@@ -290,58 +244,24 @@ end
|
|
290
244
|
|
291
245
|
class ArcadiaContractListener
|
292
246
|
def initialize(_subscriber, _class, _method, _channel=nil)
|
293
|
-
# @arcadia = _arcadia
|
294
247
|
@subscriber = _subscriber
|
295
248
|
@class = _class
|
296
249
|
@method = _method
|
297
250
|
@channel = _channel
|
298
251
|
create_callback(_class.instance)
|
299
|
-
# _klass = _class
|
300
|
-
# while _klass.kind_of?(ArcadiaContract)
|
301
|
-
# create_callback(_klass.instance)
|
302
|
-
# _klass = _klass.superclass
|
303
|
-
# end
|
304
|
-
|
305
|
-
# ObserverCallback.new(_class.instance, self, :do_main_event)
|
306
|
-
# ObserverCallback.new(MainContract.instance, self, :do_main_event)
|
307
|
-
# @class.instances.each do |_contract|
|
308
|
-
# create_callback(_contract) if _contract.kind_of?(@class)
|
309
|
-
# end
|
310
252
|
end
|
311
253
|
|
312
|
-
# def do_main_event(_event)
|
313
|
-
# if _event.signature == MainContract::CONTRACT_RETRIVE && _event.context.contract.kind_of?(@class)
|
314
|
-
# create_callback(_event.context.contract)
|
315
|
-
## elsif _event.signature == ArcadiaContract::CONTRACT_CREATED && _event.contract.kind_of?(@class)
|
316
|
-
## create_callback(_event.contract)
|
317
|
-
# end
|
318
|
-
# end
|
319
|
-
|
320
254
|
def create_callback(_contract)
|
321
255
|
ObserverCallbackContract.new(_contract, @subscriber, @method, @channel)
|
322
|
-
#ObserverCallback.new(_contract, _subscriber, _method)
|
323
256
|
end
|
324
257
|
|
325
|
-
# def update(*args)
|
326
|
-
# @subscriber.send(@method,*args)
|
327
|
-
# end
|
328
|
-
|
329
|
-
# def info
|
330
|
-
# @contract.retrieve_state if @contract
|
331
|
-
# end
|
332
|
-
|
333
|
-
# def delegate_action(_action, _obj=nil)
|
334
|
-
# if @contract && @contract.respond_to? :do_action
|
335
|
-
# @contract.do_action
|
336
|
-
# end
|
337
|
-
# end
|
338
258
|
end
|
339
259
|
|
340
260
|
class ArcadiaContractListenerThread < ArcadiaContractListener
|
341
261
|
|
342
262
|
def create_callback(_contract)
|
343
263
|
#Thread.new do super(_contract, _subscriber, _method) end
|
344
|
-
ObserverCallbackContractThread.new(_contract)
|
264
|
+
ObserverCallbackContractThread.new(_contract, @subscriber, @method, @channel)
|
345
265
|
end
|
346
266
|
|
347
267
|
end
|
data/base/a-utils.rb
CHANGED
@@ -248,7 +248,7 @@ end
|
|
248
248
|
|
249
249
|
class AGTkOSplittedFrames < AGTkSplittedFrames
|
250
250
|
attr_reader :top_frame, :bottom_frame
|
251
|
-
def initialize(parent=nil, height=10, keys=nil)
|
251
|
+
def initialize(parent=nil, height=10, perc=false,keys=nil)
|
252
252
|
super(parent, height, keys)
|
253
253
|
self.place(
|
254
254
|
'relwidth' => 1,
|
@@ -262,7 +262,12 @@ class AGTkOSplittedFrames < AGTkSplittedFrames
|
|
262
262
|
@top_frame = TkFrame.new(self){
|
263
263
|
relief 'flat'
|
264
264
|
}
|
265
|
-
|
265
|
+
if perc
|
266
|
+
p_height = TkWinfo.screenheight(self)
|
267
|
+
y = (p_height/100*height).to_i
|
268
|
+
else
|
269
|
+
y = height
|
270
|
+
end
|
266
271
|
@top_frame.place(
|
267
272
|
'relwidth' => '1',
|
268
273
|
'bordermode' => 'inside',
|
@@ -602,7 +607,7 @@ class Application
|
|
602
607
|
end
|
603
608
|
|
604
609
|
def init_config
|
605
|
-
self['applicationParams'].persistent_file = local_dir
|
610
|
+
self['applicationParams'].persistent_file = File.join(local_dir, self['applicationParams'].name+'.pers')
|
606
611
|
if !File.exists?(self['applicationParams'].persistent_file)
|
607
612
|
File.new(self['applicationParams'].persistent_file, File::CREAT).close
|
608
613
|
end
|
@@ -620,7 +625,7 @@ class Application
|
|
620
625
|
|
621
626
|
# this method load arcadia.conf from local directory for personalizations
|
622
627
|
def load_local_config(_create_if_not_exist=true)
|
623
|
-
local_file_config = local_dir
|
628
|
+
local_file_config = File.join(local_dir,File.basename(self['applicationParams'].config_file))
|
624
629
|
if FileTest.exist?(local_file_config)
|
625
630
|
self['conf'].update(self.config_file2hash(local_file_config))
|
626
631
|
elsif _create_if_not_exist
|
@@ -641,7 +646,7 @@ class Application
|
|
641
646
|
end
|
642
647
|
|
643
648
|
def local_dir
|
644
|
-
_local_dir = ENV["HOME"]
|
649
|
+
_local_dir = File.join(ENV["HOME"],'.'+self['applicationParams'].name) if ENV["HOME"]
|
645
650
|
if _local_dir && !File.exist?(_local_dir)
|
646
651
|
Dir.mkdir(_local_dir)
|
647
652
|
@first_run = true
|
@@ -687,7 +692,7 @@ class Application
|
|
687
692
|
_lines.each{|_line|
|
688
693
|
_strip_line = _line.strip
|
689
694
|
if (_strip_line.length > 0)&&(_strip_line[0,1]!='#')
|
690
|
-
var_plat = _line.split('
|
695
|
+
var_plat = _line.split('::')
|
691
696
|
if var_plat.length > 1
|
692
697
|
if (RUBY_PLATFORM.include?(var_plat[0]))
|
693
698
|
#if (var_plat[0] == RUBY_PLATFORM)
|
data/conf/arcadia.conf
CHANGED
@@ -82,7 +82,7 @@ toolbar_buttons.sys.exit.action=arcadia->do_exit
|
|
82
82
|
|
83
83
|
libraries=tk,tkCustom
|
84
84
|
#libraries=tk,tkBWidget,tkCustom,tkArcadia
|
85
|
-
#i386-mswin32
|
85
|
+
#i386-mswin32::libraries=tk,tkBWidget,tkCustom, tkIWidget
|
86
86
|
# tk library properties
|
87
87
|
libraries.tk.name=Tk
|
88
88
|
libraries.tk.source=lib/tk/al-tk.rb
|
@@ -138,51 +138,51 @@ splash.version.font=Courier 10
|
|
138
138
|
splash.credits.font=Courier 10
|
139
139
|
splash.banner.font=Courier 8 italic
|
140
140
|
|
141
|
-
i386-mswin32
|
142
|
-
i386-mswin32
|
143
|
-
i386-mswin32
|
144
|
-
i386-mswin32
|
145
|
-
i386-mswin32
|
141
|
+
i386-mswin32::splash.title.font=Ariel 26 bold
|
142
|
+
i386-mswin32::splash.subtitle.font=Ariel 8 bold
|
143
|
+
i386-mswin32::splash.version.font=Ariel 8
|
144
|
+
i386-mswin32::splash.credits.font=Ariel 8
|
145
|
+
i386-mswin32::splash.banner.font=Ariel 8 italic
|
146
146
|
#:::::::::::::::: splash group ::::::::::::::::::::::<begin>
|
147
147
|
|
148
148
|
#:::::::::::::::: main group ::::::::::::::::::::::<begin>
|
149
149
|
main.mainmenu.font=courier 9
|
150
|
-
i386-freebsd6
|
151
|
-
i386-mswin32
|
150
|
+
i386-freebsd6::main.mainmenu.font=courier 12
|
151
|
+
i386-mswin32::main.mainmenu.font=Ariel 8
|
152
152
|
main.font=courier 9
|
153
153
|
main.font.bold=courier 9 bold
|
154
|
-
i386-freebsd6
|
155
|
-
i386-freebsd6
|
156
|
-
i386-mswin32
|
157
|
-
i386-mswin32
|
154
|
+
i386-freebsd6::main.font=courier 12
|
155
|
+
i386-freebsd6::main.font=courier 12 bold
|
156
|
+
i386-mswin32::main.font=Ariel 8
|
157
|
+
i386-mswin32::main.font.bold=Ariel 8 bold
|
158
158
|
main.component.font=times 8
|
159
|
-
i386-mswin32
|
159
|
+
i386-mswin32::main.component.font=Ariel 8
|
160
160
|
#:::::::::::::::: main group ::::::::::::::::::::::<end>
|
161
161
|
|
162
162
|
#:::::::::::::::: inspector group ::::::::::::::::::::::<begin>
|
163
163
|
inspectors.tabs.font=courier 9
|
164
|
-
i386-mswin32
|
165
|
-
i386-freebsd6
|
164
|
+
i386-mswin32::inspectors.tabs.font=Ariel 8
|
165
|
+
i386-freebsd6::inspectors.tabs.font=courier 12
|
166
166
|
inspectors.tabs.side=top
|
167
167
|
inspectors.inspector.tabs.font=courier 9
|
168
|
-
i386-freebsd6
|
169
|
-
i386-mswin32
|
168
|
+
i386-freebsd6::inspectors.inspector.tabs.font=courier 12
|
169
|
+
i386-mswin32::inspectors.inspector.tabs.font=Ariel 8
|
170
170
|
inspectors.inspector.tabs.side=top
|
171
171
|
inspectors.inspector.key.font=courier 9
|
172
172
|
inspectors.inspector.value.font=courier 9
|
173
|
-
i386-freebsd6
|
174
|
-
i386-freebsd6
|
175
|
-
i386-mswin32
|
176
|
-
i386-mswin32
|
173
|
+
i386-freebsd6::inspectors.inspector.key.font=courier 12
|
174
|
+
i386-freebsd6::inspectors.inspector.value.font=courier 12
|
175
|
+
i386-mswin32::inspectors.inspector.key.font=Ariel 8
|
176
|
+
i386-mswin32::inspectors.inspector.value.font=Ariel 8
|
177
177
|
inspectors.inspector.tree.font=courier 9
|
178
|
-
i386-mswin32
|
178
|
+
i386-mswin32::inspectors.inspector.tree.font=Ariel 8
|
179
179
|
|
180
180
|
inspectors.debug.tabs.font=courier 9
|
181
|
-
i386-freebsd6
|
182
|
-
i386-mswin32
|
181
|
+
i386-freebsd6::inspectors.debug.tabs.font=courier 12
|
182
|
+
i386-mswin32::inspectors.debug.tabs.font=courier 8
|
183
183
|
inspectors.debug.tabs.font.bold=courier 9 bold
|
184
|
-
i386-freebsd6
|
185
|
-
i386-mswin32
|
184
|
+
i386-freebsd6::inspectors.debug.tabs.font.bold=courier 12 bold
|
185
|
+
i386-mswin32::inspectors.debug.tabs.font.bold=courier 8 bold
|
186
186
|
#:::::::::::::::: inspector group ::::::::::::::::::::::<end>
|
187
187
|
|
188
188
|
|
@@ -191,8 +191,8 @@ i386-mswin32:inspectors.debug.tabs.font.bold=courier 8 bold
|
|
191
191
|
all.frame.title.font=courier 9
|
192
192
|
all.frame.title.font.bold=courier 9 bold
|
193
193
|
all.frame.title.font.italic=courier 9 italic
|
194
|
-
i386-freebsd6
|
195
|
-
i386-freebsd6
|
196
|
-
i386-freebsd6
|
197
|
-
i386-mswin32
|
194
|
+
i386-freebsd6::all.frame.title.font=courier 12
|
195
|
+
i386-freebsd6::all.frame.title.font.bold=courier 12 bold
|
196
|
+
i386-freebsd6::all.frame.title.font.italic=courier 12 italic
|
197
|
+
i386-mswin32::all.frame.title.font=Ariel 8
|
198
198
|
#:::::::::::::::: all ::::::::::::::::::::::<end>
|