Welcome to NeoOffice developer notes and announcements
NeoOffice
Developer notes and announcements
 
 

This website is an archive and is no longer active
NeoOffice announcements have moved to the NeoOffice News website


Support
· Forums
· NeoOffice Support
· NeoWiki


Announcements
· Twitter @NeoOffice


Downloads
· Download NeoOffice


  
NeoOffice :: View topic - Supplemental Programs Dev Info
Supplemental Programs Dev Info
 
   NeoOffice Forum Index -> NeoOffice Development
View previous topic :: View next topic  
Author Message
aussie149
The Merovingian


Joined: Feb 12, 2005
Posts: 607
Location: Australia

PostPosted: Wed Aug 09, 2006 8:11 am    Post subject: Catching Up

i've been offline for a while as I change ISPs [an interesting challenge]. Just catching up on this. I like the suggesteion of using zipped galleries.

In relation to clipart for NeoOffice, I have been in touch with a chap in Hungary who has developed a whole package for OpenOffice.org, which installs with OpenOffice.org. The installer adds a package including icons, templates, fonts and clipart. Not sure how his installer handles updates to OpenOffice.org itself. He seems to be hosting downloads independently of OpenOffice.org at the moment, although I think he would like them to host it.

However, I think what he is doing is moving in a different direction to us. His is a mega package. I think we were agreed that it would be useful if we had a clipart package up to say 30MB in size, which got people going, and a way for them to build their own packages onto that. The packages I lobbed up Easter-time at

http://www.geocities.com/pbmaunet/Page_four.html

could still form the basis of this, but we need to cut them by about two-thirds in number.

Peter
Back to top
jakeOSX
Ninja
Ninja


Joined: Aug 12, 2003
Posts: 1373

PostPosted: Wed Aug 09, 2006 9:08 am    Post subject:

actually that page was the basis for the clip art program i've been writing. (i've installed science.zip about a thousand times)

i figured we could have one big program with all the zips, or one empty one just for drag and drop.

0.1 is almost done, i still need to add a preference for installation location.
Back to top
aussie149
The Merovingian


Joined: Feb 12, 2005
Posts: 607
Location: Australia

PostPosted: Wed Aug 09, 2006 7:40 pm    Post subject:

jakeOSX wrote:

0.1 is almost done, i still need to add a preference for installation location.


Hi Jacob

FWIW, I gave the program a try, but I get this [dialog box] message after I put in my password:


clipart

checkdir: cannot create extraction directory: /
Applications/ OpenOffice.org 2.0.app,' Contents/
openoffice.org2.0 /share /gallery

Edit OK



Will watch with interest, and try out the new version/s.

Peter
Back to top
jakeOSX
Ninja
Ninja


Joined: Aug 12, 2003
Posts: 1373

PostPosted: Thu Aug 10, 2006 5:17 am    Post subject:

are you trying to install in neo or oo.o?

if you simply double click the program, a preference dialog will pop up, make sure it is set to the one you want.

i'll take a look at the code later tonight as well.
Back to top
aussie149
The Merovingian


Joined: Feb 12, 2005
Posts: 607
Location: Australia

PostPosted: Thu Aug 10, 2006 6:15 am    Post subject: OOo or NeoOffice

jakeOSX wrote:
are you trying to install in neo or oo.o? .


Actually, it didn't present any choice screen Sad
Back to top
jakeOSX
Ninja
Ninja


Joined: Aug 12, 2003
Posts: 1373

PostPosted: Thu Aug 10, 2006 7:27 am    Post subject:

really? if you just double click the app (no zip involved) nothing happens?

if so, that's not good.
Back to top
aussie149
The Merovingian


Joined: Feb 12, 2005
Posts: 607
Location: Australia

PostPosted: Thu Aug 10, 2006 8:37 pm    Post subject: As you were

Embarassed my apologies, Jacob. I have now read the instructions and followed them properly. All go. Worked as suggested. Wink

Peter
Back to top
jakeOSX
Ninja
Ninja


Joined: Aug 12, 2003
Posts: 1373

PostPosted: Sun Aug 13, 2006 5:25 am    Post subject:

=) ok good.

(sigh of relief...)
Back to top
jakeOSX
Ninja
Ninja


Joined: Aug 12, 2003
Posts: 1373

PostPosted: Mon Sep 18, 2006 4:42 pm    Post subject:

open dialogs suck.
Back to top
jakeOSX
Ninja
Ninja


Joined: Aug 12, 2003
Posts: 1373

PostPosted: Mon Sep 18, 2006 5:53 pm    Post subject:

(note, this is for oo.ox11, neo version is next.)

it is not so pretty yet, but so far it seems to work:

http://neowiki.sixthcrusade.com/index.php/Launcher_-_Developer

one issue, despite using the icon code, this launcher program doesn't support drag and drop. probably my lack of xcode knowledge, so i'll work on that.

code, program and xcode files on that link. any feedback is appreciated.

-j
Back to top
jakeOSX
Ninja
Ninja


Joined: Aug 12, 2003
Posts: 1373

PostPosted: Mon Sep 18, 2006 7:32 pm    Post subject:

forgive me, i am tired, so i'm posting just this. the files and code to follow...

i've re-written the neo launch icons in applescript. why? well, i needed them in applescript form to bring them easily to xcode for the launcher program. will they do the same thing as the ones already made? I hope so. anyway, later i'll post the files and code for testing.

-j, the sleepy ninja
Back to top
jakeOSX
Ninja
Ninja


Joined: Aug 12, 2003
Posts: 1373

PostPosted: Tue Sep 19, 2006 4:13 am    Post subject:

oh and i forgot something, i made the launcher program prettier.

but, i can make it a droplet or a window... i can't seem to get the two to work together.. (grrr) probably something obvious

(anyone know how to load a .nib file via applescript command?)

oh, more importantly... how do i change the icon of a program? my applescript icon files need to look prettier.
Back to top
kberg
Agent


Joined: May 28, 2006
Posts: 18

PostPosted: Tue Sep 19, 2006 7:04 am    Post subject:

about icons:
If the progam is part of a .nib, edit the Info.plist to use the new icon.
Code:

   <key>CFBundleIconFile</key>
   <string>yourIcon.icns</string>


If You want to associate some filetypes with your app (and use your icons for them):
Code:

   <key>CFBundleDocumentTypes</key>
   <array>
      <dict>
         <key>CFBundleTypeExtensions</key>
         <array>
            <string>doc</string>
         </array>
         <key>CFBundleTypeIconFile</key>
         <string>doc_icon.icns</string>
         <key>CFBundleTypeName</key>
         <string>Example Document</string>
         <key>CFBundleTypeRole</key>
         <string>Viewer</string>
         <key>LSIsAppleDefaultForType</key>
         <true/>
         <key>LSTypeIsPackage</key>
         <true/>
      </dict>
   </array>


Else just copy and paste the icon from one file info (cmd-i) to the other...

Mike
Back to top
jakeOSX
Ninja
Ninja


Joined: Aug 12, 2003
Posts: 1373

PostPosted: Tue Sep 19, 2006 4:21 pm    Post subject:

HAHAHAHAHAHA

*mad scientist noise*

IT'S ALIVE!!!!!!
Back to top
jakeOSX
Ninja
Ninja


Joined: Aug 12, 2003
Posts: 1373

PostPosted: Tue Sep 19, 2006 4:58 pm    Post subject:

NeoOffice Launcher 0.1 Alpha-1 is released

http://neowiki.sixthcrusade.com/index.php/Launcher_-_Developer

the core code is based off of these icons (the Neo Stub Apps by ToonTown - You rock!):
http://trinity.neooffice.org/modules.php?name=Forums&file=viewtopic&p=20280#20280

What does it do?

Double click the icon and the program will run, giving you options of NeoOffice programs.

IGNORE THE TEMPLATE TAB. Wink for now.

Issues?

here is what i know so far:

if you use the 'open' command when Neo is not yet started, it will open the files as desired, however the NeoLauncher will hang (Application Not Responding). Works fine if Neo is running.

if you open 'BASE' or 'IMPRESS' when Neo is not yet started you get a wizard. if that wizard is cancelled instead of creating a new document, this NeoLauncher will hang.

oh and the developer page looks like my room.

-j, the mad hatter ninja
Back to top
Display posts from previous:   
   NeoOffice Forum Index -> NeoOffice Development All times are GMT - 7 Hours
Goto page Previous  1, 2, 3, 4, 5, 6  Next
Page 4 of 6

 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum

Powered by phpBB © 2001, 2005 phpBB Group

All logos and trademarks in this site are property of their respective owner. The comments are property of their posters, all the rest © Planamesa Inc.
NeoOffice is a registered trademark of Planamesa Inc. and may not be used without permission.
PHP-Nuke Copyright © 2005 by Francisco Burzi. This is free software, and you may redistribute it under the GPL. PHP-Nuke comes with absolutely no warranty, for details, see the license.