Home » U++ Library support » RichText,QTF,RTF... » RichEdit Questions  
	
		
		
			| Re: RichEdit Questions [message #2579 is a reply to message #2578] | 
			Tue, 18 April 2006 01:57    | 
		 
		
			
				
				
				  | 
					
						  
						fudadmin
						 Messages: 1321 Registered: November 2005  Location: Kaunas, Lithuania
						
					 | 
					Ultimate Contributor Administrator  | 
					 | 
		 
		 
	 | 
 
	
		| mentaltruckdriver wrote on Tue, 18 April 2006 00:49 |   Sorry about that, I was rushing   
 
Could you please answer my question? 
 
Thanks.
  |  
  
 
in display example 
#include "CtrlLib/CtrlLib.h"
struct FontFaceDisplay : Display {
	virtual void Paint(Draw& w, const Rect& r, const Value& q,
		               Color ink, Color paper, dword style) const
	{
		Font fnt = Font(q, r.Height() - 2);
		String txt = Font::GetFaceName(q);
		w.DrawRect(r, paper);
		w.DrawText(r.left + 2, r.top + (r.Height() - w.GetTextSize(txt, fnt).cy) / 2, txt, fnt, ink);
	}
};
struct MyApp : TopWindow {
	DropList dl;
	
	MyApp()
	{
		Add(dl.HSizePos().TopPos(5, Ctrl::STDSIZE));
		dl.SetDisplay(Single<FontFaceDisplay>());
		for(int i = 0; i < Font::GetFaceCount(); i++)
			dl.Add(i);
		SetRect(0, 0, 200, 70);
	}
};
GUI_APP_MAIN
{
	MyApp().Run();
}
 
		
		
		
 |  
	| 
		
	 | 
 
 
 |  
  
 
Goto Forum:
 
 Current Time: Tue Nov 04 14:06:08 CET 2025 
 Total time taken to generate the page: 0.05230 seconds 
 |