Changeset 2 for trunk/UOptions.lfm


Ignore:
Timestamp:
Feb 2, 2011, 11:31:12 AM (13 years ago)
Author:
chronos
Message:
  • Added: Routines for Load and Save configuration.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UOptions.lfm

    r1 r2  
    1 object Form2: TForm2
    2   Left = 292
    3   Height = 409
    4   Top = 113
     1object OptionsForm: TOptionsForm
     2  Left = 338
     3  Height = 410
     4  Top = 161
    55  Width = 573
    66  Caption = 'Options'
     7  ClientHeight = 410
     8  ClientWidth = 573
    79  LCLVersion = '0.9.31'
     10  object Label1: TLabel
     11    Left = 9
     12    Height = 14
     13    Top = 8
     14    Width = 112
     15    Caption = 'Available FPC variants:'
     16    ParentColor = False
     17  end
     18  object ListView1: TListView
     19    Left = 7
     20    Height = 173
     21    Top = 27
     22    Width = 561
     23    Anchors = [akTop, akLeft, akRight]
     24    Columns = <   
     25      item
     26        Caption = 'Name'
     27        Width = 70
     28      end   
     29      item
     30        Caption = 'Version'
     31      end   
     32      item
     33        Caption = 'Revision'
     34      end   
     35      item
     36        Caption = 'Date'
     37        Width = 60
     38      end   
     39      item
     40        Caption = 'Source URL'
     41        Width = 300
     42      end>
     43    OwnerData = True
     44    ReadOnly = True
     45    RowSelect = True
     46    TabOrder = 0
     47    ViewStyle = vsReport
     48  end
     49  object Label2: TLabel
     50    Left = 9
     51    Height = 14
     52    Top = 208
     53    Width = 110
     54    Caption = 'Available IDE variants:'
     55    ParentColor = False
     56  end
     57  object ListView2: TListView
     58    Left = 9
     59    Height = 150
     60    Top = 226
     61    Width = 559
     62    Anchors = [akTop, akLeft, akRight]
     63    Columns = <   
     64      item
     65        Caption = 'Name'
     66        Width = 70
     67      end   
     68      item
     69        Caption = 'Version'
     70      end   
     71      item
     72        Caption = 'Revision'
     73      end   
     74      item
     75        Caption = 'Date'
     76        Width = 60
     77      end   
     78      item
     79        Caption = 'Source URL'
     80        Width = 300
     81      end>
     82    OwnerData = True
     83    ReadOnly = True
     84    RowSelect = True
     85    TabOrder = 1
     86    ViewStyle = vsReport
     87  end
     88  object ButtonCancel: TButton
     89    Left = 408
     90    Height = 25
     91    Top = 380
     92    Width = 75
     93    Caption = 'Cancel'
     94    TabOrder = 2
     95  end
     96  object ButtonOk: TButton
     97    Left = 493
     98    Height = 25
     99    Top = 380
     100    Width = 75
     101    Caption = 'Ok'
     102    TabOrder = 3
     103  end
    8104end
Note: See TracChangeset for help on using the changeset viewer.