Changeset 24 for trunk/Forms


Ignore:
Timestamp:
Oct 21, 2011, 11:12:09 PM (13 years ago)
Author:
george
Message:
  • Add: Support for storing module skeleton.
Location:
trunk/Forms
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Forms/UMainForm.lfm

    r23 r24  
    66  ActiveControl = Panel1
    77  Caption = 'ChronIS'
    8   ClientHeight = 427
     8  ClientHeight = 422
    99  ClientWidth = 640
    1010  Menu = MainMenu1
     
    1616  object Panel1: TPanel
    1717    Left = 0
    18     Height = 427
     18    Height = 422
    1919    Top = 0
    2020    Width = 184
    2121    Align = alLeft
    2222    BevelOuter = bvNone
    23     ClientHeight = 427
     23    ClientHeight = 422
    2424    ClientWidth = 184
    2525    TabOrder = 0
    2626    object Label1: TLabel
    2727      Left = 7
    28       Height = 14
     28      Height = 18
    2929      Top = 4
    30       Width = 39
     30      Width = 51
    3131      Caption = 'Groups:'
    3232      ParentColor = False
     
    3434    object TreeView1: TTreeView
    3535      Left = 4
    36       Height = 403
     36      Height = 398
    3737      Top = 19
    3838      Width = 180
    3939      Anchors = [akTop, akLeft, akRight, akBottom]
    40       DefaultItemHeight = 16
    4140      Images = ImageListActions
    4241      ReadOnly = True
     
    4847  object Panel2: TPanel
    4948    Left = 189
    50     Height = 427
     49    Height = 422
    5150    Top = 0
    5251    Width = 451
    5352    Align = alClient
    5453    BevelOuter = bvNone
    55     ClientHeight = 427
     54    ClientHeight = 422
    5655    ClientWidth = 451
    5756    TabOrder = 1
    5857    object Label2: TLabel
    5958      Left = 2
    60       Height = 14
     59      Height = 18
    6160      Top = 4
    62       Width = 43
     61      Width = 54
    6362      Caption = 'Reports:'
    6463      ParentColor = False
     
    6665    object ListView1: TListView
    6766      Left = 2
    68       Height = 371
     67      Height = 366
    6968      Top = 19
    7069      Width = 447
     
    8685      Left = 3
    8786      Height = 25
    88       Top = 398
     87      Top = 393
    8988      Width = 75
    9089      Action = AItemAdd
     
    9594      Left = 83
    9695      Height = 25
    97       Top = 398
     96      Top = 393
    9897      Width = 75
    9998      Action = AItemDelete
     
    104103  object Splitter1: TSplitter
    105104    Left = 184
    106     Height = 427
     105    Height = 422
    107106    Top = 0
    108107    Width = 5
  • trunk/Forms/UMainForm.pas

    r21 r24  
    383383        ') ENGINE=InnoDB  DEFAULT CHARSET=utf8');
    384384    end;
     385
     386      if Tables.IndexOf(ModuleTable) = -1 then begin
     387      Database.Query(DbRows, 'CREATE TABLE IF NOT EXISTS `' + ModuleTable + '` ( ' +
     388        '`Id` int(11) NOT NULL AUTO_INCREMENT,' +
     389        '`Name` VARCHAR(255) NOT NULL,' +
     390        '`Author` VARCHAR(255) NOT NULL,' +
     391        '`Website` VARCHAR(255) NOT NULL,' +
     392        '`Version` VARCHAR(255) NOT NULL,' +
     393        '`License` VARCHAR(255) NOT NULL,' +
     394        '`Description` TEXT NOT NULL,' +
     395        'PRIMARY KEY (`Id`)' +
     396        ') ENGINE=InnoDB  DEFAULT CHARSET=utf8');
     397    end;
    385398  finally
    386399    Tables.Free;
     
    409422  GroupId: Integer;
    410423  EnumId: Integer;
     424  ModuleId: Integer;
     425  ModuleBaseId: Integer;
    411426begin
    412427  with Core.System do begin
     
    485500    AddPropertyRelationMany(ObjectPropertyGroupId, 'Properties', 'Properties', True, ObjectPropertyIdGroup);
    486501    AddPropertyRelationMany(PropertyTypeId, 'Custom types', 'CustomTypes', True, CustomTypeIdType);
     502  ModuleId := AddObject('Modules', 'Module', Core.System.Database.Database, GroupId);
     503    AddPropertyNumber(ModuleId, 'Id', 'Id', False);
     504    AddPropertyString(ModuleId, 'Name', 'Name', True);
     505    AddPropertyString(ModuleId, 'Author', 'Author', True);
     506    AddPropertyString(ModuleId, 'Website', 'Website', False);
     507    AddPropertyString(ModuleId, 'Version', 'Version', True);
     508    AddPropertyText(ModuleId, 'Description', 'Description', False);
     509    AddPropertyString(ModuleId, 'License', 'License', False);
     510
     511  ModuleBaseId := AddModule('Base', 'Chronos', '', '0.1', '', 'GNU/GPL');
    487512  end;
    488513end;
Note: See TracChangeset for help on using the changeset viewer.