Writing plugins - How to questions.. - Printable Version +- Tordex Community (http://forum.tordex.com) +-- Forum: True Launch Bar (http://forum.tordex.com/forum-3.html) +--- Forum: General Discussion (http://forum.tordex.com/forum-8.html) +--- Thread: Writing plugins - How to questions.. (/thread-726.html) Pages:
1
2
|
- mark76uk - 04-20-2003 I'm thinking of beginning programming again. My experience: Complex BASIC from the ages of 10 to 18 (i'm 26 now.) Making heavy modifications to PERL scripts. Read the JAVA manual from start to finish. I have no experience with Windows programming. What exactly is the relationship between a plugin and True Launch Bar? Do you think plugins can be written with Borland Delphi or Borland C++ Builder? I'm looking at those as a beginning, as I learn well from examples. I found a tlbpdk.zip through the forum search, but I don't even know what the filetypes are (.cpp .h .ncb .sln)!! Perhaps you should consider adding a plugins spec to the TrueSoft website. I think you may get more contributors if the information is available. /Mark - shapeshifter - 04-20-2003 Quote:I don't even know what the filetypes are (.cpp .h .ncb .sln)!! I don't know about the last 2, but .cpp is a standard C++ file, and .h is a C++ header file (function and variable declarations, usualy). Both are unformated text. By the way, I might be interested in developing plugins, too, but I don't know where to start. I've done windows programming with Visual C++, but I've never written a .dll, so I'm not sure how that works. - Yuri Kobets - 04-20-2003 .ncb - internal MS Visual C++ file .sln - project (solution) file for MS Visual C++ Quote:By the way, I might be interested in developing plugins, too, but I don't know where to start. I've done windows programming with Visual C++, but I've never written a .dll, so I'm not sure how that works.It is not so difficult VC have templates so you can begin with them. Or take any sample project from TLB PDK and use it as template for your project. TLB uses COM technology for plugins. All you need is to implement ITlbButton interface. All methods of ITlbButton have good names (like OnLButtonDown). If you have any questions let me know I'll help you. Quote:Do you think plugins can be written with Borland Delphi or Borland C++ Builder?I guess Dephi and Borland C++ Builder can do this work too but I do not know these products well enough. So I cannot recommend you something - mark76uk - 04-20-2003 Can I ask what the plugin relys on True Launch Bar for? Graphics Does TLB simply allocate a square of bar for the plugin icon to appear in?.. or is it a complex interaction, where TLB does the actual display of various component icons on behalf of the plugin? I assume plugin configuration dialogues are entirely independant of TLB? User Input Does TLB pass mouse click data to the plugin (say for the Winamp plugin, where there are various buttons?) Or is the plugin detecting and acting on these by itself? Thanks /Mark - Yuri Kobets - 04-21-2003 Quote:GraphicsHere is definition of draw function: Code: STDMETHODIMP ITlbButton::Draw(HANDLE hDC, RECT *rcItem) Code: Does TLB pass mouse click data to the plugin (say for the Code: STDMETHODIMP OnMouseOver(long keys, int x, int y); Quote:I assume plugin configuration dialogues are entirelyAll dialogs and windows are independant of TLB. The only thing TLB supply plugins is stream to save and load data of plugins: Code: STDMETHODIMP Load(IStream *data); - mark76uk - 04-21-2003 It's all very interesting. I expect that a person would need plenty more details if they wanted to write a plugin though. Would you like True Launch Bar to have many contributors? Like CoolMon, Winamp or Macromedia Exchange for example? With many people producing plugins in their spare time. Personally, I would like to see all programs supported like that. I'm still hoping that we'll be able to write True Launch Bar plugins in a scripting language someday. It would certainly set True Launch Bar success on an upward curve. /Mark - BarryJ - 04-24-2003 I like the graphic demonstration. I too would like to make plugins and have tried, but I appear to be not familiar enough with COM. - PsychoMark - 04-25-2003 As I announced earlier in another thread, I've been working on a Delphi implementation for a TLB plugin. Today I picked it up again and converted the RegisterPlugin function... it does write the correct registry keys now, but TLB won't recognize the plugin yet.. don't know if a restart is required? The UnregisterPlugin function hasn't been converted either, although it's not that much work... I just want the registration to work first . If anyone's interested in the code so far, leave a message and I'll post it... - mark76uk - 04-25-2003 Quote:If anyone's interested in the code so far, leave a message and I'll post it...Thanks, it would be good to see for when I get started with Delphi. You think Delphi is a good way to go? or maybe I'd be better going straight to the hard stuff with C++? /Mark - PsychoMark - 04-25-2003 Delphi is my way to go, don't know about yours . Been working with it for the last couple of years now, and in that time it has become my fulltime job... the only downside I can think of is the fact that TLB and it's samples are written in C++, but that's just a matter of getting this baby running I've attached the code so far, hope I didn't miss anything. It's by far not what I want it to be when it comes to clean code and reusability, hardcoded some things in there, but that's of later concern... - mark76uk - 04-28-2003 Quote:Delphi is my way to go, don't know about yours I guess I was checking to see if you had any regrets about choosing to learn Delphi. Like maybe you can't do this or that with it. Perhaps there is no integrated hoof polish dispenser, something like that. Anyhow, it seems you are pleased. Thanks /Mark - PsychoMark - 04-28-2003 There are only a few things which you can't do using Delphi alone, and that is, for example, writing a device driver. As for the other 99.99999%, it does a great job... and in fact, most things MS promises with .Net have already been implemented in Delphi years ago... ...but in the end, it's a matter of personal preference, can't argue that. The fact is that Delphi is a powerful language, the Pascal code is very clean, the compiler takes a few seconds to build multi-megabyte application (compare that to C compilers which take several minutes) and runtime speed is about the same (not counting the overhead of the component library, which takes away speed slightly for easier use, but at the lowest level there are no differences)... - Guest - 05-04-2003 Hey yall... I love seeing people gettin into plugins. I have grown out of programming now (ha, im only 20) but still love helping people. If you have any non-super-complex problems - as I havent programmed in about a year, or better yet, want me to make skins for your plugins I'd be happy to help. I, by nature am a graphic designer, not a programmer, so... yeah, keep that in mind. btw - what happened to <!-- w --><a class="postlink" href="http://www.tsoftcentral.com/skinslib">www.tsoftcentral.com/skinslib</a><!-- w --> ?? its not working for me... just got a 404 on tsoft and the truelaunch doman for /skinslib just wanting to find some new skins! oh yeah, drop me an msn if yer bored - I usually am: <!-- e --><a href="mailto:l7studios@hotmail.com">l7studios@hotmail.com</a><!-- e --> - Dracula - 05-06-2003 PsychoMark, please keep me (us?) informed about your progress with the Delphi PDK... does TrueLaunchBar recognize the DLL yet? I must admit I have zero experience with making or converting these kinds of frameworks, but I could definitely use it for development of a plugin. In my opinion it would be great if more people could create plugins for TLB, although then they won't always be of the same quality we get from Yuri But I recall a poll some time ago in which Yuri asked for what was more important to the users, plugin development or TLB improvement. If more people would create plugins, he could focus more on TLB (if he wanted of course :p)... - PsychoMark - 05-12-2003 I haven't been able to make more progress, but I'll post updates as soon as they're available of course . Yes, lower quality plugins may be released, but the good thing about plugins is: you don't have to use them |