EPB (PureBasic Editor )
Posted: Fri Dec 30, 2011 11:44 am
V1.76
http://michel.dobro.free.fr/download.php?view.25

you make your colors, using a "project option" (F8), then you save the profile file in the "Styles"
by giving your username ..
you make a copy and paste this ,Sample :
Merry Christmas
Thanks
http://michel.dobro.free.fr/download.php?view.25

ps: I am still waiting your color profiles to integrate the archiverecapitulatif
EPB can:
fully customizable color code level ..
-compile x86 or x64 (the dual mode, it compiles first by x86 and then x64)
the 2 exe have the same name with the addition of "_x86" for 32-bit and "_x64" for 64-bit
or compile different version of PureBasic! , Simply fill in the fields of paths compiler....
the compiler does not stay in RAM, it runs at each compilation, thus
It takes into account any changes (add / delete) user libraries .. at compile
- generate assembly code in your code and recharge in a tab
-be cut by lines of code " _" (Space+"_")
Sample :Can be written as :Code: Select all
If OpenWindow(0, 100, 200, 195, 260, "PureBasic Window", #PB_Window_SystemMenu | #PB_Window_MinimizeGadget | #PB_Window_MaximizeGadget)
(ability to switch back to standard at any time… Menu «Unblock » )Code: Select all
If OpenWindow(0, _ 100, _ 200, _ 195, _ 260, _ "PureBasic Window", _ #PB_Window_SystemMenu _ | #PB_Window_MinimizeGadget _ | #PB_Window_MaximizeGadget)
You can format any code section
with "_block" and "_endblock" like this
Code: Select all
_block If OpenWindow(0, _ 100, _ 200, _ 195, _ 260, _ "PureBasic Window", _ #PB_Window_SystemMenu _ | #PB_Window_MinimizeGadget _ | #PB_Window_MaximizeGadget) _endblock
Use the command « $declare » in the beginning of listing
Automatically Write your statement of procedures
Use:
You put your procedure at the end of listing
Then on top of it, you writeEPB, will then write all the statements !Code: Select all
[color=#FF0000]$declare[/color]
orders :
$catchsound
$catchsprite
$catchimage
As soon as you use these commands (in the beginning of listing)
an openfilerequester You will be asked to choose which files to include
(multiselection possible)
EPB and generate the code lines for the inclusion of these files has the location of controls,
If DataSection exists, it will be populated (insertion of new data)
Otherwise it will be created before being filled
other commands
$path for include a path in the code
$load for include a *.pb in a code , in the current line
etc...
generates the *. dll
generates the *. scr
generates the *. asm (reload the asm in the new tab )
generates the *. exe
generates the *. pb
formatting code just [ctrl+Tab]
(This updates the lists(selectable) to the right of the editor (sign / proc / const))
enable/disable: library users and Residents by menu
double compilation ( v4.60 x86 and v4.51 x86 /// or V4.60 x86 and V4.60 x64 ) etc...
just to put your tools in the "Outils"
will be available in the menu of EPB
--- Containing icon "Print" (the color code ...) through the Navigator
after the click on it, it opens the browser with the color code in, it no longer has hit Control + P (or in the browser menu, "print")
to have your code in form and color on paper ... (the background is white by default .. to avoid wasting ink)
the colors are those of the active theme in EPB
--- Containing icon "Generate code to Html + css" (in color of course)
after the click on it, it just requires the background color and the color of the default write
and it generates an HTML page with color-coded and shaped in the same folder as the source code ...
a CSS file with the same name will be generated (it is in this file you can change colors after the fact may
the colors are those of the active theme in EPB, but with fewer colors ..
a++
you make your colors, using a "project option" (F8), then you save the profile file in the "Styles"
by giving your username ..
you make a copy and paste this ,Sample :
it will allow me to include your profile in future releases ...; ********** styles de couleur de epb *********
[coloration]
couleur du fond = 15900918
couleur ecriture = 0
couleur ligne selectionne = 16761538
couleur du curseur = 7736961
couleur des blocs fond = 14252532
couleur des blocs text = 7621379
couleur des numeros de ligne text = 3869244
couleur des numeros de ligne fond = 15606265
couleur du basic = 10815653
type du basic = 1
couleur des fonctions = 5968311
type des fonctions = 0
couleur des types de variables = 9055026
type de variables = 1
couleur des commentaires = 882192
type des commentaires = 0
couleur des strings = 10631052
type des strings = 1
couleur des chiffres = 13305918
type des chiffres = 0
couleur des constantes = 1590188
type des constantes = 1
couleur des Apis = 7084280
type des Apis = 1
couleur debugger = 255
type debugger = 1
couleur Hexa = 6782995
type Hexa = 0
couleur Binaire = 2121733
type Binaire = 0
couleur Pointeur = 3608827
type Pointeur = 1
couleur Fond Procedure = 15826166
Fonte = Comic Sans MS
Taille Fonte = 10
Merry Christmas
Thanks