File: opkman_maindm.pas

package info (click to toggle)
lazarus 2.2.6%2Bdfsg2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 219,980 kB
  • sloc: pascal: 1,944,919; xml: 357,634; makefile: 270,608; cpp: 57,115; sh: 3,249; java: 609; perl: 297; sql: 222; ansic: 137
file content (53 lines) | stat: -rw-r--r-- 699 bytes parent folder | download | duplicates (4)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
unit opkman_maindm;

{$mode objfpc}{$H+}

interface

uses
  Classes, SysUtils, Controls;

type

  { TMainDM }

  TMainDM = class(TDataModule)
    Images: TImageList;
  private

  public

  end;

var
  MainDM: TMainDM;

const
  IMG_REPOSITORY = 0;
  IMG_PKG_PLUS = 1;
  IMG_PKG_FILE = 2;
  IMG_DESCRIPTION = 3;
  IMG_AUTHOR = 4;
  IMG_LAZ_COMPATIBILITY = 5;
  IMG_FPC_COMPATIBILITY = 6;
  IMG_WIDGETSET = 7;
  IMG_PKG_TYPE = 8;
  IMG_LICENSE = 9;
  IMG_DEPENDENCIES = 10;
  IMG_REPO_FILE = 13;
  IMG_PKG_MINUS = 27;
  IMG_EXPAND = 28;
  IMG_COLLAPSE = 29;
  IMG_CLEAR = 30;
  IMG_INFO = 31;
  IMG_OK = 32;
  IMG_ERROR = 33;
  IMG_SVN = 34;
  IMG_FILE_VERSION = 35;

implementation

{$R *.lfm}

end.