comparison dwtest.c @ 198:11b5da6196c2

Implemented dw_scrollbar_set_range() on Unix and fixed a bug in the test app.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Mon, 20 Jan 2003 11:16:27 +0000
parents f3718165f0b2
children b955228477b3
comparison
equal deleted inserted replaced
197:f3718165f0b2 198:11b5da6196c2
165 dw_box_pack_start( pagebox, textbox2, font_width*width2, font_height*rows, TRUE, TRUE, 4); 165 dw_box_pack_start( pagebox, textbox2, font_width*width2, font_height*rows, TRUE, TRUE, 4);
166 dw_window_set_font(textbox2, "9.WarpSans"); 166 dw_window_set_font(textbox2, "9.WarpSans");
167 167
168 scrollbar = dw_scrollbar_new(FALSE, 100, 0); 168 scrollbar = dw_scrollbar_new(FALSE, 100, 0);
169 dw_box_pack_start( pagebox, scrollbar, 100, 20, TRUE, FALSE, 0); 169 dw_box_pack_start( pagebox, scrollbar, 100, 20, TRUE, FALSE, 0);
170 dw_scrollbar_set_range(scrollbar, 0, 0); 170 dw_scrollbar_set_range(scrollbar, 0);
171 171
172 text1pm = dw_pixmap_new( textbox1, font_width*width1, font_height*rows, depth ); 172 text1pm = dw_pixmap_new( textbox1, font_width*width1, font_height*rows, depth );
173 text2pm = dw_pixmap_new( textbox2, font_width*width2, font_height*rows, depth ); 173 text2pm = dw_pixmap_new( textbox2, font_width*width2, font_height*rows, depth );
174 174
175 dw_color_foreground_set(DW_CLR_WHITE); 175 dw_color_foreground_set(DW_CLR_WHITE);