jaPBe 3.13.4 [IDE for PB 4 and PB 5]
Moderator: gnozal
One more small bug:
The settings for the hotspot of the functions from declared files was don´t save if i click ok.
If i set it to enabled and press ok and reopen the settings again, the settings for "dunctions from declars" hotspot is disabled.
regards,
Nico
The settings for the hotspot of the functions from declared files was don´t save if i click ok.
If i set it to enabled and press ok and reopen the settings again, the settings for "dunctions from declars" hotspot is disabled.
regards,
Nico
my live space
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
The hotspot does the same as F1, not more, not less. This is something I will have to improve, some day...chen wrote:Small details
- When you click constants hot spots says "constant not found" it does
not matter if it is a PB constant or user defined...
See my previous post about the scintilla problem...chen wrote:- When you click on a procedure hot spot and this procedure is in the same file it goes and find the procedure implementation but it selects several lines... When the procedure is in other file it works flat(good).
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
Fixed for the next release.nicolaus wrote:One more small bug:
The settings for the hotspot of the functions from declared files was don´t save if i click ok.
If i set it to enabled and press ok and reopen the settings again, the settings for "dunctions from declars" hotspot is disabled.
regards,
Nico
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
Works here.Kiffi wrote:since this update, my code indentation with Ctrl + Tab does not work anymoregnozal wrote:Update to V3.6.10
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
Update
Changes :
- fixed hotspot bug in preferences
- found a workaround for the scintilla hotspot selection problem : I am sending virtual keys to the scintilla control ; seems working for me.
Changes :
- fixed hotspot bug in preferences
- found a workaround for the scintilla hotspot selection problem : I am sending virtual keys to the scintilla control ; seems working for me.
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
Sorry to repeat again
but the second point is vital for me....
Suggestion...
- Could you implement an optional flag to wrap the code
- Special Help here....
When jaPBe maximize there is no way to resize it... I nee to:
- reinstall
- customize
it has happened several times
all my other apps work OK, inclusive PBIDE..
Coul you tell me which parameter to adjust in prefs file to resize jaPBe?
but the second point is vital for me....
Suggestion...
- Could you implement an optional flag to wrap the code
- Special Help here....
When jaPBe maximize there is no way to resize it... I nee to:
- reinstall
- customize
it has happened several times
all my other apps work OK, inclusive PBIDE..
Coul you tell me which parameter to adjust in prefs file to resize jaPBe?
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
I don't understand your problem ; minimize/maximize works fine here.chen wrote:When jaPBe maximize there is no way to resize it... I nee to:
- reinstall
- customize
it has happened several times
all my other apps work OK, inclusive PBIDE..
Coul you tell me which parameter to adjust in prefs file to resize jaPBe?
Anyway, in jaPBe.pref you will find all you need :
jaPBe.pref wrote:[General]
...
MainWindowXPos = jaPBe X [Screen coordinates]
MainWindowYPos = jaPBe Y [Screen coordinates]
MainWindowWidth = jaPBe Width [Screen coordinates]
MainWindowHeight = jaPBe Height [Screen coordinates]
MainWindowZoom = jaPBe Zoomed [0:False|1:True]
...
In my (short) experience with jaPBe, line wraping (with SCI_SetWrapMode() etc...) causes much painting problems and may add some useless complexity to the existing code.chen wrote:Could you implement an optional flag to wrap the code
Have a look yourself at : http://scintilla.sourceforge.net/Scinti ... ETWRAPMODE
So it's not my priority, sorry.
You may continuechen wrote:Im working with other editor![]()
![]()

For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
Update
Changes :
Added procedure tooltips : if the mouse cursor is over a procedure and sits still over 1 second, a tooltip appears (it provides the same information as the calltips in the jaPBe status bar).
Changes :
Added procedure tooltips : if the mouse cursor is over a procedure and sits still over 1 second, a tooltip appears (it provides the same information as the calltips in the jaPBe status bar).
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
yes exactly, as an option.gnozal wrote:You mean click alone does nothing and CTRL+click starts explorer ?Flype wrote:[x] Option 1 : Ctrl + Click to follow link
in jaPBe, there's 3 types of comment.gnozal wrote:What are the 3 types ?Flype wrote:[x] Option 2 : Ignore HotSpot in Strings
[x] Option 3 : Ignore HotSpot in Comments (Type 1)
[x] Option 4 : Ignore HotSpot in Comments (Type 2)
[x] Option 5 : Ignore HotSpot in Comments (Type 3)
1/ ;
2/ ;-
3/ ;/
So an URL looks bad if styles are differents.
thank you a lot for the update.gnozal wrote:Yes, why not ...Flype wrote:and in the Editor/Style page, it would be nice to have 2 URL styles.
. 1 for URL in strings.
. 1 for URL in comments.
that's good to see that you understood at least 1 of my 3 requests

thanx again.
No programming language is perfect. There is not even a single best language.
There are only languages well suited or perhaps poorly suited for particular purposes. Herbert Mayer
There are only languages well suited or perhaps poorly suited for particular purposes. Herbert Mayer
others ideas related to hotspots :
IncludePath "c:\includes\" ; OnClick-> Open the folder, Equivalent to RunProgram("c:\includes\")
IncludeFile "win32.pbi" ; OnClick -> Open in jaPBe the related purebasic file
#PB_Event_Gadget ; OnMouseOver -> Display the related value
myRect.RECT ; OnMouseOver -> Display the related structure
etc...
IncludePath "c:\includes\" ; OnClick-> Open the folder, Equivalent to RunProgram("c:\includes\")
IncludeFile "win32.pbi" ; OnClick -> Open in jaPBe the related purebasic file
#PB_Event_Gadget ; OnMouseOver -> Display the related value
myRect.RECT ; OnMouseOver -> Display the related structure
etc...
No programming language is perfect. There is not even a single best language.
There are only languages well suited or perhaps poorly suited for particular purposes. Herbert Mayer
There are only languages well suited or perhaps poorly suited for particular purposes. Herbert Mayer
- NoahPhense
- Addict
- Posts: 1999
- Joined: Thu Oct 16, 2003 8:30 pm
- Location: North Florida