Added a toolbar example application

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@19118 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Quentin Mathe 2004-04-15 23:18:23 +00:00
parent 242f97b135
commit 508a0d21c3
2 changed files with 30 additions and 1 deletions

View file

@ -1,4 +1,26 @@
{ {
Controller = {
Actions = (
"toggleToolbar:",
"setFirstItemLabel:",
"setSecondItemImage:",
"newItem:",
"newWindow:",
"popUpMenuSizeChanged:",
"popUpMenuDisplayChanged:"
);
Outlets = (
newItemName,
toolbarButton,
firstItemSwitch,
popUpField,
sliderField,
window,
popUpMenuSize,
popUpMenuDisplay
);
Super = NSObject;
};
FirstResponder = { FirstResponder = {
Actions = ( Actions = (
"activateContextHelpMode:", "activateContextHelpMode:",
@ -138,7 +160,14 @@
"useStandardKerning:", "useStandardKerning:",
"useStandardLigatures:", "useStandardLigatures:",
"yank:", "yank:",
"zoom:" "zoom:",
"toggleToolbar:",
"setFirstItemLabel:",
"setSecondItemImage:",
"newItem:",
"newWindow:",
"popUpMenuSizeChanged:",
"popUpMenuDisplayChanged:"
); );
Super = NSObject; Super = NSObject;
}; };