Showing posts with label Griffon. Show all posts
Showing posts with label Griffon. Show all posts

Saturday, September 5, 2009

ANN: gConfig 0.1.2




I am pleased to announce the release of gConfig 0.1.2, a configuration tool for Griffon, a Groovy Technology.

This release is an upgrade to Griffon 0.1.2 and resolves a LogManager not found issue.

Background

While building Griffon applications, I found myself doing the same repeatative steps when I started building the application. Install these sets of plugins, get those additional 3rd party jars, and oh ya, I want a menubar, toolbar, statusbar, . . . , you get the drift.

I felt like I was spending too much time doing boilerplate code. So I did what any good IT person would do, made it easier through automation. The result is gConfig.

After creating the application, you run gConfig. gConfig is a wizard that will present you with a list of the currently available plugins. You pick which ones you one and the move on to select some popular predefined 3rd party jars. Finally, you are presented with a collection of templates (Menubar, ToolBar, StatusBar, About, and Tips) to install.

When you have completed your selections, gConfig will do the rest. Install the plugins, download the jars, and install the selected templates.

It saves a load of time.

Give it a try.

Screen Shots:









Friday, June 5, 2009

J1 Thirsty Head : Groovy, Grails Griffon Videos

Scott Davis of Thirsty Head was able to get some Gr8 interviews at Java One.

They include many of the leaders of the Groovy, Grails, & Griffon community.

Here they are all in one place.

Interview with Dierk Koenig
Interview with Danno Ferrin, James Williams of Griffon
Interview with Graeme Rocher
Interview with Dave Klein
Interview with Geertjan Wielenga
Interview with Andres Almiray
Interview with Sven Haiges and Glen Smith
Interview with Guillaume Laforge
Interview with Robert Fischer

Tuesday, June 2, 2009

ANN: AbeilleForm-Builder 0.1 - Griffon Plugin

I am pleased to announce the first release of AbeilleForm Builder. The AbeilleForm Builder makes it possible to easily use Abeille Forms in your Groovy swingbuilder and Griffon applications

Abeille Forms Designer is a GUI builder for Java applications. Developers and designers can create complex, professional forms in minutes. Designers can drag and drop components onto a WYSIWYG editor. Full support for undo/redo and copy/paste is provided. Components can be easily customized by adding images or modifying their properties. Advanced fill effects are supported such as textures and gradients.

With the AbeilleForm Builder, you can use the .jfrm file in your application and access the form components.

Installation


The builder is installed as follows:


griffon install-plugin abeilleform-builder


Usage




application(title:'taf',
//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]
) {
build(Actions)
formPanel(id: "cf", "countForm.jfrm")
countButton.action = clickAction
bind(source: model ,sourceProperty: "count", target: countLabel, targetProperty: "text" )
}


Notice the node "formPanel". The "formPanel" node loads the ".jfrm" form created in the AbeilleForm Designer into your griffon application. During the process of loading the form, the builder creates a bean reference for the form components. This allows us to address the form component by name. E.g "countButton" and "countLabel"

You can learn more about AbeilleForms at http://abeille.dev.java.net

Tuesday, May 26, 2009

ANN gConfig 0.1 - a Configuration tool for Griffon




I am pleased to announce the first public release of gConfig 0.1, a configuration tool for Griffon, a Groovy Technology.

While building Griffon applications, I found myself doing the same repeatative steps when I started building the application. Install these sets of plugins, get those additional 3rd party jars, and oh ya, I want a menubar, toolbar, statusbar, . . . , you get the drift.

I felt like I was spending too much time doing boilerplate code. So I did what any good IT person would do, made it easier through automation. The result is gConfig.

After creating the application, you run gConfig. gConfig is a wizard that will present you with a list of the currently available plugins. You pick which ones you one and the move on to select some popular predefined 3rd party jars. Finally, you are presented with a collection of templates (Menubar, ToolBar, StatusBar, About, and Tips) to install.

When you have completed your selections, gConfig will do the rest. Install the plugins, download the jars, and install the selected templates.

It saves a load of time.

Give it a try.

Screen Shots:









Saturday, May 23, 2009

Gr8Cong - Griffon Code @GitHub

The Code for the Griffon Desktop Front-end application to Graeme's Twitter Clone is available at GitHub

Really Good Blog post covering Gr8Conf

Really Good Blog post covering Gr8Conf: http://gettinggroovy.wordpress.com/category/gr8/

Gr8 Conf - Outstanding Success



Well the Gr8Conf was an outstanding success. The organizers Soeren Glasius and Guillaume Laforge put on Gr8 Conference, it will be hard to top.

Guillaume Laforge, Graeme Rocher, Paul King, Dierk Koenig, Jochen Theodorou, and many other Groovy technology giants were there. It was an honor to be in the presence of all that Groovy brain power, . . .

The attendees were pretty sharp too, . . . there were some gr8 questions and ideas shared. I've already started following on the Griffon ideas.

And Copenhagen, . . . What a wonderful place. Everyone was very kind and helpful. And the sights, . . . Many wonderful things to see and do.

I would like to give a special Thank you to Soeren for being such a Gr8 Host. He really took Gr8 care of everyone and made everyone feel at home. I would especially like to thank him for helping me and my family have fun and seeing the sights of Copenhagen and Denmark.

Tuesday, April 28, 2009

ANN: Griffon Splash Plugin Updated



I am pleased to announce the release of the Griffon plugin, Splash 0.1.1. Splash has been updated to use the new Griffon Banner and enhanced as per GRIFFON-38.

Sunday, November 2, 2008

Griffon Collab-Todo

Coming Soon! In Chapter 13 of "Beginning Groovy and Grails" I built a Swing GUI using SwingXBuilder that interacted with a Grails RESTFul Web Service. I am finishing the process of creating a Griffon version of the same application. It is starting to look good.



I will be uploading the source to the Beginning Groovy and Grails website in the near future. Stay tuned.