Browse Subversion Repository
Annotation of /RsiEditor/Configuration.cs
Parent Directory
| Revision Log
Revision 3 -
( hide annotations)
( download)
Fri Jun 4 08:26:57 2010 UTC
(13 years, 10 months ago)
by pex
File size: 1255 byte(s)
| 1 |
pex |
3 |
using System; |
| 2 |
|
|
using System.Collections.Generic; |
| 3 |
|
|
using System.Text; |
| 4 |
|
|
using System.Drawing; |
| 5 |
|
|
|
| 6 |
|
|
namespace RipSync.Managers |
| 7 |
|
|
{ |
| 8 |
|
|
public class Configuration |
| 9 |
|
|
{ |
| 10 |
|
|
|
| 11 |
|
|
#region Form 関連 |
| 12 |
|
|
|
| 13 |
|
|
public String Language = "日本語"; |
| 14 |
|
|
//public Point MainFormPosition = new Point(200, 50); |
| 15 |
|
|
//public Size MainFormSize = new Size(800, 700); |
| 16 |
|
|
|
| 17 |
|
|
//public ControlStatus EditFormStatus = ControlStatus.InMain; |
| 18 |
|
|
//public Point EditFormPosition = new Point(200, 600); |
| 19 |
|
|
//public Size EditFormSize = new Size(450, 200); |
| 20 |
|
|
|
| 21 |
|
|
//public ControlStatus ObjectFormStatus = ControlStatus.InMain; |
| 22 |
|
|
//public Point ObjectFormPosition = new Point(0, 50); |
| 23 |
|
|
//public Size ObjectFormSize = new Size(200, 600); |
| 24 |
|
|
|
| 25 |
|
|
//public int PreviewInterval = 100; |
| 26 |
|
|
|
| 27 |
|
|
//public bool ConfirmBeforeDelete = true; |
| 28 |
|
|
|
| 29 |
|
|
#endregion |
| 30 |
|
|
|
| 31 |
|
|
//#region クイックマニュアル 関連 |
| 32 |
|
|
|
| 33 |
|
|
//public string ManualHome = "manual/index.html"; |
| 34 |
|
|
//public bool ShowManualAtStartup = false; |
| 35 |
|
|
|
| 36 |
|
|
//#endregion |
| 37 |
|
|
|
| 38 |
|
|
//#region パス関連 |
| 39 |
|
|
|
| 40 |
|
|
//public string HomePage = @"http://www29.atwiki.jp/ripsync/"; |
| 41 |
|
|
//public string SoundPath = ""; |
| 42 |
|
|
//public string RSPPath = ""; |
| 43 |
|
|
|
| 44 |
|
|
//#endregion |
| 45 |
|
|
} |
| 46 |
|
|
} |
|