Re: [fltk.bugs] [HIGH] STR #2682: Vertical scrollbar of Fl_Text_Editor have a strange behavior. Or is bug?

2011-09-28 Thread Dmitrij K

DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L2682
Version: 1.3-current


for addition information: this behaviour can be seen with flag is
WORDWRAP...


Link: http://www.fltk.org/str.php?L2682
Version: 1.3-current

___
fltk-bugs mailing list
fltk-bugs@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-bugs


Re: [fltk.bugs] [HIGH] STR #2684: Not correct drawing of cursor on Fl_Input in ending state.

2011-09-28 Thread Dmitrij K
Matthias!

Thank you a lot!

> [STR Closed w/Resolution]
> 
> Link: http://www.fltk.org/str.php?L2684
> Version: 1.3-current
> Fix Version: 1.3.1 (r2684)
> 
> 
> increased right margin in Fl_Input_ so that a cursor at the end of a line
> would always be fully visible.
> 
> 
> Link: http://www.fltk.org/str.php?L2684
> Version: 1.3-current
> Fix Version: 1.3.1 (r2684)

-- 
Regards.

___
fltk-bugs mailing list
fltk-bugs@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-bugs


Re: [fltk.bugs] [HIGH] STR #2682: Vertical scrollbar of Fl_Text_Editor have a strange behavior. Or is bug?

2011-07-20 Thread Dmitrij K
If I would can correct the `strange behavior', - I would send to here a patch...
And forgive me if dialogue with me delivers you some difficulties. I study 
recently English.

--
Regards.

___
fltk-bugs mailing list
fltk-bugs@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-bugs


Re: [fltk.bugs] [HIGH] STR #2682: Vertical scrollbar of Fl_Text_Editor have a strange behavior. Or is bug?

2011-07-20 Thread Dmitrij K
Matthias Melcher  wrote:

>
> On 20.07.2011, at 17:28, Dmitrij K wrote:
>
>> Ian MacArthur wrote:
>>
>>> can you bring this discussion onto fltk.geneal for now? To try and clarify
>>> the issue you are seeing.
>>
>> No.
>
> There is no discussion of bugs in fltk.bugs. This newsgroup is for mail 
> generated by the bug tracking system only. All problems need to be discussed 
> in general.fltk. All bugs need to go into fltk.org/str.php .
>
>  - Matthias

But only simple users has been reading `general.fltk'.
How can they help with things about programming of native widgets of FLTK?
If I'm not right? - Can you explain me why?


-- 
Regards.

___
fltk-bugs mailing list
fltk-bugs@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-bugs


Re: [fltk.bugs] [HIGH] STR #2682: Vertical scrollbar of Fl_Text_Editor have a strange behavior. Or is bug?

2011-07-20 Thread Dmitrij K
Ian MacArthur wrote:

> can you bring this discussion onto fltk.geneal for now? To try and clarify
> the issue you are seeing.

No.

> I can't see the fualt trying to reproduce the description given here...

Ian, here is video with that about I've been telling in this STR:

http://www.youtube.com/watch?v=IH6vA-_M8tU

-- 
Regards.

___
fltk-bugs mailing list
fltk-bugs@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-bugs


[fltk.bugs] [HIGH] STR #2684: Not correct drawing of cursor on Fl_Input in ending state.

2011-07-18 Thread Dmitrij K

DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L2684
Version: 1.3-current


When width of symbols more than width of Fl_Input, and I'm setting position
of cursor into endian state - the cursor don't drawing full, but only half
of his width (an 1 pixel) - it has not good-looking...


Link: http://www.fltk.org/str.php?L2684
Version: 1.3-current

___
fltk-bugs mailing list
fltk-bugs@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-bugs


[fltk.bugs] [HIGH] STR #2683: Crash Fl_Text_Display when I'm calling disp->show_cursor(true);

2011-07-18 Thread Dmitrij K

DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L2683
Version: 1.3-current


here is example from `fltk/examples/textdisplay-with-colors.cxx':

#include 
#include 
#include 
int main() {
   // Style table
   Fl_Text_Display::Style_Table_Entry stable[] = {
   // FONT COLOR  FONT FACE   FONT SIZE
   // --- --- --
   {  FL_RED, FL_COURIER, 18 }, // A - Red
   {  FL_DARK_YELLOW, FL_COURIER, 18 }, // B - Yellow
   {  FL_DARK_GREEN,  FL_COURIER, 18 }, // C - Green
   {  FL_BLUE,FL_COURIER, 18 }, // D - Blue
   };
   Fl_Window *win = new Fl_Window(640, 480, "Simple Text Display With
Colors");
   Fl_Text_Display *disp = new Fl_Text_Display(20, 20, 640-40, 480-40);
   
   /// here is my calling of showing cursor
   disp->show_cursor(true);
   
   Fl_Text_Buffer *tbuff = new Fl_Text_Buffer();// text buffer
   Fl_Text_Buffer *sbuff = new Fl_Text_Buffer();// style buffer
   disp->buffer(tbuff);
   int stable_size = sizeof(stable)/sizeof(stable[0]);  // # entries in
style table (4)
   disp->highlight_data(sbuff, stable, stable_size, 'A', 0, 0);
   // Text
   tbuff->text("Red Line 1\nYel Line 2\nGrn Line 3\nBlu Line 4\n"
   "Red Line 5\nYel Line 6\nGrn Line 7\nBlu Line 8\n");
   // Style for text
   sbuff->text("AA\nBB\nCC\nDD\n"
   "AA\nBB\nCC\nDD\n");
   win->resizable(*disp);
   win->show();
   return(Fl::run());
}


Link: http://www.fltk.org/str.php?L2683
Version: 1.3-current

___
fltk-bugs mailing list
fltk-bugs@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-bugs


[fltk.bugs] [HIGH] STR #2682: Vertical scrollbar of Fl_Text_Editor have a strange behavior. Or is bug?

2011-07-18 Thread Dmitrij K

DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L2682
Version: 1.3-current


When I'm setting cursor to end position in test/editor (after loading of
some file not big size) (and when line has minimum one symbol in that
position) and/or:

1) doing to wheel mouse to up a bit and back to down - the vertical
scrollbar (rather will be to say: handler of scrollbar) don't arrive into
his ending state;

2) doing move to previous position (to back per one symbol) (via FL_Left
and back to FL_Right) don't move to previous line - the handler of
scrollbar slid in this moment, but it must not be;


Link: http://www.fltk.org/str.php?L2682
Version: 1.3-current

___
fltk-bugs mailing list
fltk-bugs@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-bugs


[fltk.bugs] Error in work FLUID2 (fltk2) (kde-4.4.5 & xorg-1.9.2)

2011-01-13 Thread Dmitrij K
Hi all.

I update of my Linux (Gentoo Linux) (kde-4.4.5, xorg-1.9.2) and I having now 
problems in work a fluid2: I can't change some object in the fluid2-tree or 
click some a button, so this is doing impossible building GUI in the fluid2.

Link on video: http://www.youtube.com/watch?v=-XowN8yXsWY

With regards.
___
fltk-bugs mailing list
fltk-bugs@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-bugs