Author Topic: suggestion for C::B  (Read 13265 times)

lfm

  • Guest
suggestion for C::B
« on: May 13, 2006, 01:47:08 am »
The width of line numbers colume is too large, not good - look.
Thanks.
 

takeshimiya

  • Guest
Re: suggestion for C::B
« Reply #1 on: May 13, 2006, 01:50:57 am »
The width of line numbers colume is too large, not good - look.
It's a wxScintilla feature request, not a Code::Blocks one.

Please send a feature request here: http://sourceforge.net/tracker/?group_id=51305&atid=462819
or send a mail to Otto Wyss, the wxScintilla author: wyo at users.sourceforge.net


Offline thomas

  • Administrator
  • Lives here!
  • *****
  • Posts: 3979
Re: suggestion for C::B
« Reply #2 on: May 13, 2006, 01:25:33 pm »
It's a wxScintilla feature request, not a Code::Blocks one.
This has little to do with wxScintilla, as the width of the margin can be set arbitrarily by the application. We are setting the width of the margin to accomodate 6 digits.
As an example of a Scintilla based applicatin which does it differently, SciTE adjusts the margin width dynamically, which I perceive extremely disturbing.

If you are unhappy with the margin's width, feel free to modify cbEditor.cpp, add
m_pControl->SetMarginWidth(0, desiredWidth); as the last line of  cbEditor::cbEditor().

However, I see no reason why we should change the width in the code base or make it runtime-configurable. It is good as it is for most people, and not every property has to be configurable just for the sake of tweaking.
"We should forget about small efficiencies, say about 97% of the time: Premature quotation is the root of public humiliation."

takeshimiya

  • Guest
Re: suggestion for C::B
« Reply #3 on: May 13, 2006, 01:55:23 pm »
It's a wxScintilla feature request, not a Code::Blocks one.
This has little to do with wxScintilla, as the width of the margin can be set arbitrarily by the application.
Great, I didn't know.

As an example of a Scintilla based applicatin which does it differently, SciTE adjusts the margin width dynamically, which I perceive extremely disturbing.
Thanks for the info, I find "extremely disturbing" not setting the width dynamically and always wondered why it wasn't behaving like SciTE (that's why I thought it was wxScintilla...)

However, I see no reason why we should change the width in the code base or make it runtime-configurable.
The above and this very thread is a good reason now.  :wink:

It is good as it is for most people, and not every property has to be configurable just for the sake of tweaking.
I agree that not every property has to be configurable just for the sake of tweaking (in fact I would preffer dynamically adjusting it without any option to disable it), but I strongly disagree about the "It is good as it is for most people" part.

So, it's personal preference, not everyone haves to like everything you like. In those cases is where an option is the right thing.
Thank you for your patience.

lfm

  • Guest
Re: suggestion for C::B
« Reply #4 on: May 13, 2006, 02:37:19 pm »
my wish: The width of line numbers column become an option of "Settings/Editor "

Offline Game_Ender

  • Lives here!
  • ****
  • Posts: 551
Re: suggestion for C::B
« Reply #5 on: May 13, 2006, 10:52:47 pm »
However, I see no reason why we should change the width in the code base or make it runtime-configurable. It is good as it is for most people, and not every property has to be configurable just for the sake of tweaking.

I disagree, it has always seemed like a bug to me too, not really a "feature".  I agree with Takeshi and ifm, I think it should be an option, but its definitely not a pressing issue.

sethjackson

  • Guest
Re: suggestion for C::B
« Reply #6 on: May 13, 2006, 11:02:20 pm »
However, I see no reason why we should change the width in the code base or make it runtime-configurable. It is good as it is for most people, and not every property has to be configurable just for the sake of tweaking.

I disagree, it has always seemed like a bug to me too, not really a "feature".  I agree with Takeshi and ifm, I think it should be an option, but its definitely not a pressing issue.

I agree.

Offline Defender

  • Multiple posting newcomer
  • *
  • Posts: 49
Re: suggestion for C::B
« Reply #7 on: May 14, 2006, 01:22:19 pm »
I would also like a dynamic adjusting :)

Offline Game_Ender

  • Lives here!
  • ****
  • Posts: 551
Re: suggestion for C::B
« Reply #8 on: May 23, 2006, 06:25:47 am »
I have added to and updated Defenders patch to take into account the actual text size, to use the configuration file, and to put an option in the editor dialog.  It is patch #1072.

lfm

  • Guest
Re: suggestion for C::B
« Reply #9 on: May 23, 2006, 04:57:04 pm »
I have added to and updated Defenders patch to take into account the actual text size, to use the configuration file, and to put an option in the editor dialog.  It is patch #1072.
I only use the Nightly Builds (not SVN), is it applied to Nightly Builds ?

Offline Game_Ender

  • Lives here!
  • ****
  • Posts: 551
Re: suggestion for C::B
« Reply #10 on: May 23, 2006, 05:04:29 pm »
I only use the Nightly Builds (not SVN), is it applied to Nightly Builds ?

No, but after a few more small changes it will hopefully be accepted.  It is also important to note that revision 2485 has the ability for you to manually adjust the size, but only in pixels.  My patch will be updated to allow you to have the number dynamically adjusted or set a fixed number of digits to be displayed.

Offline Defender

  • Multiple posting newcomer
  • *
  • Posts: 49
Re: suggestion for C::B
« Reply #11 on: May 23, 2006, 05:08:54 pm »
I only use the Nightly Builds (not SVN), is it applied to Nightly Builds ?

No, but after a few more small changes it will hopefully be accepted.  It is also important to note that revision 2485 has the ability for you to manually adjust the size, but only in pixels.  My patch will be updated to allow you to have the number dynamically adjusted or set a fixed number of digits to be displayed.
Hello!
I find, that it is better to enter the width in pixels, because those, who don't use the dynamic setting option, (which I find very convenient), they want the full control over the width setting, not just a platform-dependent semi-variable width.
But that's just my opinion, we can duscuss it here, that is the purpose of this board ;)

Defender

Offline Defender

  • Multiple posting newcomer
  • *
  • Posts: 49
Re: suggestion for C::B
« Reply #12 on: May 23, 2006, 06:37:42 pm »
Patch updated to grey out the spincontrol: #1074

Offline Game_Ender

  • Lives here!
  • ****
  • Posts: 551
Re: suggestion for C::B
« Reply #13 on: May 24, 2006, 05:01:00 am »
I find, that it is better to enter the width in pixels, because those, who don't use the dynamic setting option, (which I find very convenient), they want the full control over the width setting, not just a platform-dependent semi-variable width.
But that's just my opinion, we can duscuss it here, that is the purpose of this board ;)

That is a good point, but what is the purpose of controlling the margin width to the pixel in the first place? I would assume most people will just futz with number until it shows 6, 5, 4 or so characters anyways.  Do you want the margin to show 4.25 characters?  I am guessing the users wants to force the number of characters shown in the first place.

Offline Defender

  • Multiple posting newcomer
  • *
  • Posts: 49
Re: suggestion for C::B
« Reply #14 on: May 24, 2006, 07:28:22 am »
I thought about it, and there is really no big reason to handle the width in pixels instead of chars.
Great community btw  :)
« Last Edit: May 24, 2006, 12:33:06 pm by Defender »