1
vote
3answers
105 views
how to set array length with delphi 2010 rtti
how to set array length in runtime ?
setLength(t.GetProperty('Propertys'),3); ????
unit Unit3;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Grap …
2
votes
2answers
88 views
Trouble playing with indexed propertes via new RTTI [D2010]
ShowMessage(TRttiContext.Create.GetType(TStringList)
.GetProperty('Strings').ToString);
Above code fails as .GetProperty returns nil on properties like "Strings", "Objects" …
0
votes
3answers
108 views
Why is type_info declared outside namespace std?
Hi,
I'm using VS2005 and the MS implementation of STL. However, the class type_info in is declared outside of "namespace std". This creates some problems for third party libs that …
1
vote
3answers
154 views
Delphi 2010: New RTTI, setting propertyvalue to arbitary value
TRTTIProperty.SetValue( ) takes an TValue instance, but if the provided TValue instance is based on a different type then the property, things blow up.
E.g.
TMyObject = class
pub …
4
votes
2answers
92 views
Discovering the class where a property is first published with multiple levels of inheritence.
Using the Typinfo unit, it is easy to enumerate properties as seen in the following snippet:
procedure TYRPropertiesMap.InitFrom(AClass: TClass; InheritLevel: Integer = 0);
var
…
1
vote
1answer
116 views
How to get access field in Delphi using RTTI?
Hi all, and sorry for my English. Consider the following:
TFieldType = class
fValue: string;
end;
TMainClass = class
private
Ffield: TFieldType;
public
function GetValue: s …
8
votes
6answers
823 views
How expensive is RTTI?
I understand that there is a resource hit from using RTTI, but how big is it? Everywhere I've looked just says that "RTTI is expensive," but none of them actually give any benchma …
1
vote
7answers
437 views
How to typeof in C++
How to simulate C# typeof-command behavior in C++?
C# example:
public static PluginNodeList GetPlugins (Type type)
{
...
}
Call:
PluginManager.GetPlugins (typeof(IPlugin))
…
2
votes
3answers
134 views
Mixing RTTI flags in C++
If I have multiple linked C++ statically linked libraries in C++, is it possible for them to share (pass to and from functions) class objects if they have been compiled with differ …
3
votes
1answer
144 views
How to set event handlers via new RTTI? [D2010]
Hi all,
Playing with new RTTI module, I couldn't find a way to set an event handler with the new utilities. Trying something like this:
LProp := TRttiContext.Create.GetType(Form1 …
1
vote
1answer
138 views
TPersistent + interface, Delphi
Hi,
I need a class that is based on TPersistent (so it stores the RTTI) and includes default Interfaces handling (QueryInterface, _AddRef, _Release) ... what is the class name I'm …
3
votes
2answers
242 views
Why do I get “type has no typeinfo” error with an enum type
I have declared the following enum type in which I want the first member to have the ordinal value of 1 (one) rather than the usual 0 (zero):
type
TMyEnum = (
…
0
votes
4answers
95 views
Qt RTTI trouble
In a quest for handling events (like mouse moves and clicks) not by subclassing, one has to use installEventFilter and provide an event handler. While doing so, I've encountered a …
2
votes
5answers
163 views
Run-time type information in C++
Hi,
What is runtime type control in C++?
P.Gopalakrishnan.
1
vote
2answers
82 views
Convert a DevExpress TcxFilterOperatorKind to and from a string ?
Hi!
Here is a codesnippet I use to get filtertype operator from a filter in a DevExpress grid:
OperatorKindToStr is used to extract operatorkind from a filter as string and store …
