Author Topic: GIT Interation plug-in  (Read 9511 times)

Shreder

  • Guest
GIT Interation plug-in
« on: November 25, 2009, 06:49:22 pm »
Hello all,

I what to make plug-in for interaction of C:B with http://git-scm.com/

I'm use C:B since 2006 but never try to extends it. I need to start with this soon as possible.
So does anybody can get me an links to some documentation (not outdated) or complete lite C:B plug-in sample that good commented and really works?

Thanks

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5910
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: GIT Interation plug-in
« Reply #1 on: November 26, 2009, 03:00:03 pm »
Firstly, you can try the wiki page:

Creating a simple "Hello World" plugin - CodeBlocks

or you can check out the codeblocks SVN code, then try to read any plugins in cb_svn\src\plugins\contrib

they are really not hard to read. :D

You can learn how to :

add a menu
add a toolbar
use the build in editor
access to project manager
do every thing you want
....

quite easy. :D
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.