mirror of https://github.com/buggins/dlangui.git
parent
69eb231279
commit
c9c3f82504
|
@ -25,52 +25,31 @@ class SettingsDialog : Dialog {
|
||||||
id: vlayout
|
id: vlayout
|
||||||
padding: Rect { 5, 5, 5, 5 }
|
padding: Rect { 5, 5, 5, 5 }
|
||||||
layoutWidth: fill; layoutHeight: fill
|
layoutWidth: fill; layoutHeight: fill
|
||||||
HorizontalLayout {
|
|
||||||
layoutWidth: fill; layoutHeight: fill
|
|
||||||
VerticalLayout {
|
|
||||||
margins: 5
|
|
||||||
layoutWidth: 25%; layoutHeight: fill
|
|
||||||
TextWidget { text: "Project template" }
|
|
||||||
StringListWidget {
|
|
||||||
id: projectTemplateList
|
|
||||||
layoutWidth: wrap; layoutHeight: fill
|
|
||||||
}
|
|
||||||
}
|
|
||||||
VerticalLayout {
|
|
||||||
margins: 5
|
|
||||||
layoutWidth: 40%; layoutHeight: fill
|
|
||||||
TextWidget { text: "Template description" }
|
|
||||||
EditBox {
|
|
||||||
id: templateDescription; readOnly: true
|
|
||||||
layoutWidth: fill; layoutHeight: fill
|
|
||||||
}
|
|
||||||
}
|
|
||||||
VerticalLayout {
|
|
||||||
layoutWidth: 35%; layoutHeight: fill
|
|
||||||
margins: 5
|
|
||||||
TextWidget { text: "Directory layout" }
|
|
||||||
EditBox {
|
|
||||||
id: directoryLayout; readOnly: true
|
|
||||||
layoutWidth: fill; layoutHeight: fill
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
TableLayout {
|
TableLayout {
|
||||||
margins: 5
|
margins: 5
|
||||||
colCount: 2
|
colCount: 2
|
||||||
layoutWidth: fill; layoutHeight: wrap
|
layoutWidth: fill; layoutHeight: wrap
|
||||||
TextWidget { text: "" }
|
|
||||||
CheckBox { id: cbCreateWorkspace; text: "Create new solution"; checked: true }
|
TextWidget { text: "IRC Server host name" }
|
||||||
TextWidget { text: "Workspace name" }
|
EditLine { id: edHost; text: "irc.freenode.net"; layoutWidth: fill; minWidth: 400 }
|
||||||
EditLine { id: edWorkspaceName; text: "newworkspace"; layoutWidth: fill }
|
TextWidget { text: "IRC Server port" }
|
||||||
TextWidget { text: "" }
|
EditLine { id: edHost; text: "6667"; layoutWidth: fill }
|
||||||
CheckBox { id: cbCreateWorkspaceSubdir; text: "Create subdirectory for workspace"; checked: true }
|
TextWidget { text: " " }
|
||||||
TextWidget { text: "Project name" }
|
TextWidget { text: " " }
|
||||||
EditLine { id: edProjectName; text: "newproject"; layoutWidth: fill }
|
TextWidget { text: "Nickname" }
|
||||||
TextWidget { text: "" }
|
EditLine { id: edHost; text: "dlangui_test"; layoutWidth: fill }
|
||||||
CheckBox { id: cbCreateSubdir; text: "Create subdirectory for project"; checked: true }
|
TextWidget { text: "Alternate nickname" }
|
||||||
TextWidget { text: "Location" }
|
EditLine { id: edHost; text: "dlangui_tst2"; layoutWidth: fill }
|
||||||
DirEditLine { id: edLocation; layoutWidth: fill }
|
TextWidget { text: "Username" }
|
||||||
|
EditLine { id: edHost; text: "user"; layoutWidth: fill }
|
||||||
|
TextWidget { text: "Real name" }
|
||||||
|
EditLine { id: edHost; text: "User Real Name"; layoutWidth: fill }
|
||||||
|
TextWidget { text: " " }
|
||||||
|
TextWidget { text: " " }
|
||||||
|
TextWidget { text: "Channel to join on connect" }
|
||||||
|
EditLine { id: edHost; text: "#d"; layoutWidth: fill }
|
||||||
|
TextWidget { text: " " }
|
||||||
|
CheckBox { id: cbCreateWorkspace; text: "Connect on startup"; checked: true }
|
||||||
}
|
}
|
||||||
TextWidget { id: statusText; text: ""; layoutWidth: fill }
|
TextWidget { id: statusText; text: ""; layoutWidth: fill }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue