libpit - Personal Issue Tracker core libraries (Filter, Issue, Project, Category) pit-cli - Command Line Interface (CLI) to libpit pit-swing - Graphical, Swing interface to libpit (built using Griffon) libpit and pit-swing both build, though pit-swing is just an empty griffon poject.
14 lines
420 B
Groovy
14 lines
420 B
Groovy
application(title:'pit-swing',
|
|
//size:[320,480],
|
|
pack:true,
|
|
//location:[50,50],
|
|
locationByPlatform:true,
|
|
iconImage: imageIcon('/griffon-icon-48x48.png').image,
|
|
iconImages: [imageIcon('/griffon-icon-48x48.png').image,
|
|
imageIcon('/griffon-icon-32x32.png').image,
|
|
imageIcon('/griffon-icon-16x16.png').image]
|
|
) {
|
|
// add content here
|
|
label('Content Goes Here') // deleteme
|
|
}
|