コード例 #1
0
ファイル: box.cs プロジェクト: farhatmihalko/Far_manager
 //constructor
 public box(int x, int y, int width, int height, Application app)
 {
     this.x = x;
     this.y = y;
     this.width = width;
     this.height = height;
     this.app = app;
 }
コード例 #2
0
ファイル: Panel.cs プロジェクト: farhatmihalko/Far_manager
        //constructor
        public Panel(int x, int y, int width, int height, Application app)
        {
            this.x = x;
            this.y = y;
            this.width = width;
            this.height = height;

            this.app = app;
            //drawing panel interface
            this.draw();

            //adding footer and header text

            this.setSubFooterName("Path name");
            this.setSubFooterDate("Date of creation");

            //create observer
            this.ob_left = new observer(this.x + 1, this.y + 2, this.width - 2, this.height, this);
        }
コード例 #3
0
ファイル: Program.cs プロジェクト: farhatmihalko/Far_manager
 static void Main(string[] args)
 {
     Application app = new Application();
     app.init();
 }
コード例 #4
0
ファイル: box.cs プロジェクト: farhatmihalko/Far_manager
 public createDir(int x, int y, int width, int height, Application app)
     : base(x, y, width, height, app)
 {
 }
コード例 #5
0
ファイル: box.cs プロジェクト: farhatmihalko/Far_manager
 public selectDriver(int x, int y, int width, int height, Application app)
     : base(x, y, width, height, app)
 {
 }
コード例 #6
0
ファイル: box.cs プロジェクト: farhatmihalko/Far_manager
 public errorBox(int x, int y, int width, int height, string content, Application app)
     : base(x, y, width, height, app)
 {
     this.content = content;
 }