mirror of https://github.com/zlatinb/muwire
sequential download support
parent
3518db63cc
commit
3550fa43c9
|
@ -37,7 +37,8 @@ class CollectionTabController {
|
|||
items : collection.getFiles(),
|
||||
host : model.host,
|
||||
infoHash : collection.getInfoHash(),
|
||||
full : true
|
||||
full : true,
|
||||
sequential : view.isSequentialCollection()
|
||||
)
|
||||
model.eventBus.publish(e)
|
||||
|
||||
|
@ -59,7 +60,8 @@ class CollectionTabController {
|
|||
items : new HashSet<>(items),
|
||||
host : model.host,
|
||||
infoHash : collection.getInfoHash(),
|
||||
full : false
|
||||
full : false,
|
||||
sequential : view.isSequentialItem()
|
||||
)
|
||||
model.eventBus.publish(e)
|
||||
|
||||
|
|
|
@ -46,6 +46,8 @@ class CollectionTabModel {
|
|||
@Observable boolean viewCommentButtonEnabled
|
||||
@Observable boolean downloadItemButtonEnabled
|
||||
@Observable boolean downloadCollectionButtonEnabled
|
||||
@Observable boolean downloadSequentiallyCollection
|
||||
@Observable boolean downloadSequentiallyItem
|
||||
|
||||
void mvcGroupInit(Map<String,String> args) {
|
||||
root = new DefaultMutableTreeNode()
|
||||
|
|
|
@ -5,6 +5,7 @@ import griffon.core.artifact.GriffonView
|
|||
import griffon.inject.MVCMember
|
||||
import griffon.metadata.ArtifactProviderFor
|
||||
|
||||
import javax.swing.JCheckBox
|
||||
import javax.swing.JLabel
|
||||
import javax.swing.JTable
|
||||
import javax.swing.JTextArea
|
||||
|
@ -38,6 +39,8 @@ class CollectionTabView {
|
|||
JTable itemsTable
|
||||
def lastItemsTableSortEvent
|
||||
JTree itemsTree
|
||||
JCheckBox downloadSequentiallyCollectionCheckbox
|
||||
JCheckBox downloadSequentiallyItemCheckbox
|
||||
|
||||
void initUI() {
|
||||
int rowHeight = application.context.get("row-height")
|
||||
|
@ -62,7 +65,16 @@ class CollectionTabView {
|
|||
}
|
||||
}
|
||||
panel(constraints : BorderLayout.SOUTH) {
|
||||
button(text : trans("COLLECTION_DOWNLOAD"), enabled : bind{model.downloadCollectionButtonEnabled}, downloadCollectionAction)
|
||||
gridLayout(rows : 1, cols : 3)
|
||||
panel{}
|
||||
panel {
|
||||
button(text : trans("COLLECTION_DOWNLOAD"), enabled : bind{model.downloadCollectionButtonEnabled}, downloadCollectionAction)
|
||||
}
|
||||
panel {
|
||||
label(text : trans("DOWNLOAD_SEQUENTIALLY"))
|
||||
downloadSequentiallyCollectionCheckbox = checkBox(selected : bind {model.downloadSequentiallyCollection},
|
||||
enabled : bind {model.downloadCollectionButtonEnabled})
|
||||
}
|
||||
}
|
||||
}
|
||||
panel {
|
||||
|
@ -114,12 +126,24 @@ class CollectionTabView {
|
|||
button(text : trans("DOWNLOAD"), enabled : bind {model.downloadItemButtonEnabled}, downloadAction)
|
||||
button(text : trans("VIEW_COMMENT"), enabled : bind{model.viewCommentButtonEnabled}, viewCommentAction)
|
||||
}
|
||||
panel {}
|
||||
panel {
|
||||
label(text : trans("DOWNLOAD_SEQUENTIALLY"))
|
||||
downloadSequentiallyItemCheckbox = checkBox(selected : bind {model.downloadSequentiallyItem},
|
||||
enabled : bind {model.downloadItemButtonEnabled})
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
boolean isSequentialCollection() {
|
||||
downloadSequentiallyCollectionCheckbox.model.isSelected()
|
||||
}
|
||||
|
||||
boolean isSequentialItem() {
|
||||
downloadSequentiallyItemCheckbox.model.isSelected()
|
||||
}
|
||||
|
||||
void mvcGroupInit(Map<String, String> args) {
|
||||
def mainFrameGroup = application.mvcGroupManager.findGroup("MainFrame")
|
||||
mainFrameGroup.model.collections.add(model.uuid.toString())
|
||||
|
|
Loading…
Reference in New Issue