<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to feature-requests</title><link>https://sourceforge.net/p/rxlib/feature-requests/</link><description>Recent changes to feature-requests</description><atom:link href="https://sourceforge.net/p/rxlib/feature-requests/feed.rss" rel="self"/><language>en</language><lastBuildDate>Thu, 10 Feb 2011 12:46:51 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/rxlib/feature-requests/feed.rss" rel="self" type="application/rss+xml"/><item><title>Improved RxRichEd</title><link>https://sourceforge.net/p/rxlib/feature-requests/8/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;RxRichEdit needs some major refactoring, it's have the theme API disabled and don't support well the unicode.&lt;br /&gt;
Refactoring from the current RichEdit in 2010 version will bring themes and unicode, and since 2010 is for XP and later, add support for Richedit 4.1 will be a great improvement.&lt;br /&gt;
With current support for embedded items (pictures and so on), is a perfect tool for small and quick text processing.&lt;br /&gt;
I know that this changes can break the compatibility with older versions if isn't well made.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Sergio Alexandre</dc:creator><pubDate>Thu, 10 Feb 2011 12:46:51 -0000</pubDate><guid>https://sourceforge.netb0d811cee7fecaacabb4ce3d47297abf4ed2f0db</guid></item><item><title>I need D7 Version</title><link>https://sourceforge.net/p/rxlib/feature-requests/7/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Where to download RxLib for D7?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Sat, 06 Sep 2003 02:55:33 -0000</pubDate><guid>https://sourceforge.netbfb437416b8097fa5c745748b2823e46e2d18836</guid></item><item><title>Compile on linux platform</title><link>https://sourceforge.net/p/rxlib/feature-requests/6/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Support compilation and installing components on Kylix&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Fri, 24 Jan 2003 08:37:31 -0000</pubDate><guid>https://sourceforge.netdc29c58ca18a4b457c01b14a9559d4fc866ec777</guid></item><item><title>RxtrayIcon</title><link>https://sourceforge.net/p/rxlib/feature-requests/5/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Showing balloon tips on the trayicon&lt;br /&gt;
please add this to the rxtrayicon component, i have this &lt;br /&gt;
code that works on delphi to do this... hope that would &lt;br /&gt;
be helpfull:&lt;/p&gt;
&lt;p&gt;unit Unit1;&lt;/p&gt;
&lt;p&gt;interface&lt;/p&gt;
&lt;p&gt;uses&lt;br /&gt;
Windows, Messages, SysUtils, Classes, Graphics, &lt;br /&gt;
Controls, Forms, Dialogs;&lt;/p&gt;
&lt;p&gt;const&lt;br /&gt;
NIF_INFO = $10;&lt;br /&gt;
NIF_MESSAGE = 1;&lt;br /&gt;
NIF_ICON = 2;&lt;br /&gt;
NOTIFYICON_VERSION = 3;&lt;br /&gt;
NIF_TIP = 4;&lt;br /&gt;
NIM_SETVERSION = $00000004;&lt;br /&gt;
NIM_SETFOCUS = $00000003;&lt;br /&gt;
NIIF_INFO = $00000001;&lt;br /&gt;
NIIF_WARNING = $00000002;&lt;br /&gt;
NIIF_ERROR = $00000003;&lt;/p&gt;
&lt;p&gt;NIN_BALLOONSHOW = WM_USER + 2;&lt;br /&gt;
NIN_BALLOONHIDE = WM_USER + 3;&lt;br /&gt;
NIN_BALLOONTIMEOUT = WM_USER + 4;&lt;br /&gt;
NIN_BALLOONUSERCLICK = WM_USER + 5;&lt;br /&gt;
NIN_SELECT = WM_USER + 0;&lt;br /&gt;
NINF_KEY = $1;&lt;br /&gt;
NIN_KEYSELECT = NIN_SELECT or NINF_KEY;&lt;/p&gt;
&lt;p&gt;TRAY_CALLBACK = WM_USER + $7258;&lt;/p&gt;
&lt;p&gt;type&lt;br /&gt;
PNewNotifyIconData = ^TNewNotifyIconData;&lt;br /&gt;
TDUMMYUNIONNAME    = record&lt;br /&gt;
case Integer of&lt;br /&gt;
0: (uTimeout: UINT);&lt;br /&gt;
1: (uVersion: UINT);&lt;br /&gt;
end;&lt;/p&gt;
&lt;p&gt;TNewNotifyIconData = record&lt;br /&gt;
cbSize: DWORD;&lt;br /&gt;
Wnd: HWND;&lt;br /&gt;
uID: UINT;&lt;br /&gt;
uFlags: UINT;&lt;br /&gt;
uCallbackMessage: UINT;&lt;br /&gt;
hIcon: HICON;&lt;br /&gt;
szTip: array [0..127] of Char;&lt;br /&gt;
dwState: DWORD; //Version 5.0&lt;br /&gt;
dwStateMask: DWORD; //Version 5.0&lt;br /&gt;
szInfo: array [0..255] of Char; //Version 5.0&lt;br /&gt;
DUMMYUNIONNAME: TDUMMYUNIONNAME;&lt;br /&gt;
szInfoTitle: array [0..63] of Char; //Version 5.0&lt;br /&gt;
dwInfoFlags: DWORD;   //Version 5.0&lt;br /&gt;
end;&lt;/p&gt;
&lt;p&gt;type&lt;br /&gt;
TForm1 = class(TForm)&lt;br /&gt;
procedure FormCreate(Sender: TObject);&lt;br /&gt;
procedure FormDestroy(Sender: TObject);&lt;br /&gt;
private&lt;br /&gt;
IconData: TNewNotifyIconData;&lt;br /&gt;
procedure SysTrayIconMsgHandler(var Msg: &lt;br /&gt;
TMessage); message &lt;br /&gt;
TRAY_CALLBACK;&lt;br /&gt;
procedure AddSysTrayIcon;&lt;br /&gt;
procedure ShowBalloonTips;&lt;br /&gt;
procedure DeleteSysTrayIcon;&lt;br /&gt;
public&lt;br /&gt;
end;&lt;/p&gt;
&lt;p&gt;var&lt;br /&gt;
Form1: TForm1;&lt;/p&gt;
&lt;p&gt;implementation&lt;/p&gt;
&lt;p&gt;{$R *.DFM}&lt;/p&gt;
&lt;p&gt;uses&lt;br /&gt;
ShellAPI;&lt;/p&gt;
&lt;p&gt;procedure TForm1.SysTrayIconMsgHandler(var Msg: &lt;br /&gt;
TMessage);&lt;br /&gt;
begin&lt;br /&gt;
case Msg.lParam of&lt;br /&gt;
WM_MOUSEMOVE:;&lt;br /&gt;
WM_LBUTTONDOWN:;&lt;br /&gt;
WM_LBUTTONUP:;&lt;br /&gt;
WM_LBUTTONDBLCLK:;&lt;br /&gt;
WM_RBUTTONDOWN:;&lt;br /&gt;
WM_RBUTTONUP:;&lt;br /&gt;
WM_RBUTTONDBLCLK:;&lt;br /&gt;
NIN_BALLOONSHOW:;&lt;br /&gt;
NIN_BALLOONHIDE:;&lt;br /&gt;
NIN_BALLOONTIMEOUT:;&lt;br /&gt;
NIN_BALLOONUSERCLICK:;&lt;br /&gt;
end;&lt;br /&gt;
end;&lt;/p&gt;
&lt;p&gt;procedure TForm1.AddSysTrayIcon;&lt;br /&gt;
begin&lt;br /&gt;
IconData.cbSize := SizeOf(IconData);&lt;br /&gt;
IconData.Wnd := AllocateHWnd&lt;br /&gt;
(SysTrayIconMsgHandler);&lt;br /&gt;
IconData.uID := 0;&lt;br /&gt;
IconData.uFlags := NIF_ICON or NIF_MESSAGE or &lt;br /&gt;
NIF_TIP;&lt;br /&gt;
IconData.uCallbackMessage := TRAY_CALLBACK;&lt;br /&gt;
IconData.hIcon := Application.Icon.Handle;&lt;br /&gt;
IconData.szTip := 'hello world!!';&lt;br /&gt;
if not Shell_NotifyIcon(NIM_ADD, @IconData) then&lt;br /&gt;
ShowMessage('add fail');&lt;br /&gt;
end;&lt;/p&gt;
&lt;p&gt;procedure TForm1.ShowBalloonTips;&lt;br /&gt;
var&lt;br /&gt;
TipInfo, TipTitle: string;&lt;br /&gt;
begin&lt;br /&gt;
IconData.cbSize := SizeOf(IconData);&lt;br /&gt;
IconData.uFlags := NIF_INFO;&lt;br /&gt;
TipInfo := 'hello world!!!';&lt;br /&gt;
strPLCopy(IconData.szInfo, TipInfo, SizeOf&lt;br /&gt;
(IconData.szInfo) - 1);&lt;br /&gt;
IconData.DUMMYUNIONNAME.uTimeout := 3000;&lt;br /&gt;
TipTitle := 'hi!!!!!!!!!!!!!!!!!';&lt;br /&gt;
strPLCopy(IconData.szInfoTitle, TipTitle, SizeOf&lt;br /&gt;
(IconData.szInfoTitle) - &lt;br /&gt;
1);&lt;br /&gt;
IconData.dwInfoFlags := &lt;br /&gt;
NIIF_INFO;     //NIIF_ERROR;  //NIIF_WARNING;&lt;br /&gt;
Shell_NotifyIcon(NIM_MODIFY, @IconData);&lt;br /&gt;
end;&lt;/p&gt;
&lt;p&gt;procedure TForm1.DeleteSysTrayIcon;&lt;br /&gt;
begin&lt;br /&gt;
DeallocateHWnd(IconData.Wnd);&lt;br /&gt;
if not Shell_NotifyIcon(NIM_DELETE, @IconData) then&lt;br /&gt;
ShowMessage('delete fail');&lt;br /&gt;
end;&lt;/p&gt;
&lt;p&gt;procedure TForm1.FormCreate(Sender: TObject);&lt;br /&gt;
begin&lt;br /&gt;
AddSysTrayIcon;&lt;br /&gt;
ShowBalloonTips;&lt;br /&gt;
end;&lt;/p&gt;
&lt;p&gt;procedure TForm1.FormDestroy(Sender: TObject);&lt;br /&gt;
begin&lt;br /&gt;
DeleteSysTrayIcon;&lt;br /&gt;
end;&lt;/p&gt;
&lt;p&gt;end. &lt;/p&gt;
&lt;p&gt;anyway i use more Cbuilder than Delphi&lt;/p&gt;
&lt;p&gt;i´ve made a small component for it that works was a tray &lt;br /&gt;
icon and displays messages like:&lt;/p&gt;
&lt;p&gt;Form1-&amp;amp;gt;MaDTrayIcon-&amp;amp;gt;ShowBalloonHint(AnsiString &lt;br /&gt;
Title, AnsiString Text, IconType, int duration);&lt;/p&gt;
&lt;p&gt;tanks and sorry the bad inglish&lt;br /&gt;
madinfo@cadaval.net&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Tue, 31 Dec 2002 00:30:16 -0000</pubDate><guid>https://sourceforge.netca2eee58fdb1b25bc4ddf9588cbb537e9c0fc540</guid></item><item><title>Upgrade to Delphi7</title><link>https://sourceforge.net/p/rxlib/feature-requests/4/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Do you have an idea to migrate RxLib to&lt;br /&gt;
Delphi7? I didn't find to install it at D7,&lt;br /&gt;
and continued to use D6 until this will&lt;br /&gt;
be possible... &lt;/p&gt;
&lt;p&gt;thanks for any help...&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Wed, 18 Dec 2002 23:49:46 -0000</pubDate><guid>https://sourceforge.netbac2a36ce6dff8ad686b88905e832a2fb0181721</guid></item><item><title>Make GetFrameBitmap public.</title><link>https://sourceforge.net/p/rxlib/feature-requests/3/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Can we make the method following method public:&lt;br /&gt;
FILE: GIFCtrl.pas&lt;br /&gt;
METHOD: TRxGIFAnimator.GetFrameBitmap&lt;br /&gt;
REQUEST: Make it a public method&lt;/p&gt;
&lt;p&gt;Its very handy for exporting frames and applying effects &lt;br /&gt;
to GIF's.&lt;/p&gt;
&lt;p&gt;Thanks&lt;br /&gt;
Derek&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Thu, 30 May 2002 14:22:02 -0000</pubDate><guid>https://sourceforge.netee4c3e5fce4f19446506d3a8011ce7e74095b644</guid></item><item><title>RxdbGrid Event when editor is closing.</title><link>https://sourceforge.net/p/rxlib/feature-requests/2/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I've tried to do this several times myself without &lt;br /&gt;
success.  I'ld like to have an event fired in RxDbGrid &lt;br /&gt;
when the editor is exitting, just as when it starts.&lt;br /&gt;
This way I can validate data and update other fields &lt;br /&gt;
when the user is finished entering changes.&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;So far I've been unable to figure out how to add this &lt;br /&gt;
ability.&lt;/p&gt;
&lt;p&gt;Del&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Wed, 03 Apr 2002 18:41:13 -0000</pubDate><guid>https://sourceforge.net3eb682d8f911149b8a4bb05ab06b05fe5a27e56b</guid></item><item><title>XP Visual Styles API Support</title><link>https://sourceforge.net/p/rxlib/feature-requests/1/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;XP Visual Styles API Support Wanted for now. All &lt;br /&gt;
controls must have new XP themed look-and-feel when &lt;br /&gt;
possible.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Mon, 17 Dec 2001 15:02:48 -0000</pubDate><guid>https://sourceforge.neta4041724b93f6fba2f195cf320cb6a00b5b0ade7</guid></item></channel></rss>