oh yes, oh yes, oh yes!
Ok, I made a start:
How To: Create a Non-App Clarion project?
I will update here as I add more. Of course if anyone else wishes to contribute please do! I recommend using the docs category for now. If we get a bunch of these and it makes sense then we can look at creating a more specific category.
Gah, I made the other one too!
Iām having some issues implementing this in a multi dll solution.
Your example works fine.
It works fine in the data dll but the moment I include it in one of the other dlls I get compiler errors.
Iāve done the include in the Appās global includes which is fine.
INCLUDE('ButtonTile.inc'),ONCE
INCLUDE('TileManager.inc'),ONCE
The moment I implement the object in the procedure
Tiles TileManager
Iām getting these compiler errors.
Unresolved External TYPE$TILEMANAGER
Unresolved External VMT$TILEMANAGER
Unresolved External CONSTRUCT@F11TILEMANAGER
Unresolved External DESTRUCT@F11TILEMANAGER
Any thoughts?
Bertus
Probably need to set the link and dll attributes in the class properly. I was lazy and hard coded them because I was using it in a single exe. Submit a PR to the github repo if you can!
Oh wait, I just looked and they use the _ABCLinkMode_
and _ABCDllMode_
so that should work. Do you have those defines? Which version of clarion?
Itās the latest release of C10 12799. I have those defined. If got another class which I wrote for auto completing with the same defines and that is working without problem.
The other strange thing I found is that your classes are not showing up in the ABC Class Viewer. I did move it to the Clarion10\accessory\libsrc\win folder.
The only reference Iām getting on VMT is the Virtual method table in Russā Book: https://books.google.com.au/books?id=Loo8iIBDOdcC&pg=PA36&dq=CLARION+VMt&hl=en&sa=X&ved=0ahUKEwihjffqpvDbAhUIx7wKHfwwBiUQ6AEIKTAA#v=onepage&q=CLARION%20VMt&f=false
How about if you add this the first line of the inc files:
!ABCIncludeFile
It is mentioned in the help file too in fact. In these three sections:
- IMPLEMENTS(add methods to a CLASS)
- Implementing of INTERFACEs in Derived Classes
- Module Definition Files (.EXP Files), Exporting CLASSes
Itās this last one that seems to be most relevant, and should be fixed by including the !ABCIncludeFile
Exporting CLASSes
Exporting CLASS declarations requires a special form of export definition.
You must create two export definitions for the CLASS itself. The first begins with VMT$ followed by the name of the CLASS as the entryname. The second begins with TYPE$ followed by the name of the CLASS as the entryname. These are followed by an export definition for each method in the CLASS to export whose pwords must begin with the name of the CLASS as the first parameter.
For example:
EXPORTS VMT$MYCLASS @? TYPE$MYCLASS @? FIRSTMETHOD@F7MYCLASS @? SECONDMETHOD@F7MYCLASS @?
Adding the !ABCIncludeFile seemed to do the trick.
I wasnāt trying to export the class anyway.
If refactored your ButtonTile to TileButton just to put them together alphabetically.
Iāve put a template together for it as well, just to make the implementation smoother. The template uses the buttonās background property as the Tile background.
You are welcome to have a look here and merge back to your Github if you are happy with the changes.
It looks like the class has a problem with the Clarion resizer functionality.
Hello, could someone upload an example of the use of the class using an .app with CLarion 11? I compiled the project and it works fine, but I want to test the class in an app, I never worked with classes and I want to learn, if someone could give me a hand I would be very grateful!
declare your class in global embeds (for example in After Global Data embed), like this
MyClass CLASS
f1 STRING(20)
END
then in code you can call
MyClass.f1 = 'Martin'
In that case you can manually call TileManager.WindowComponent.Reset(1) when windows event is
resizing, I think the equate for resizing is 561 and/or 1023. After that, the buttons/tiles is resized according to
resizerā¦
For example, if you declate it like; tiles TileManager, then in embed of TakeWindowEvent, on 5001, right after parrent call use something like this:
case event()
of 1023 orof 561
tiles.WindowComponent.Reset(1)
END
Is there a reason why youāre not using the equates?
Pure lazinessā¦ hehehe
Using the class, the enter key doesnāt work any more on field navigationā¦
Is there some workaround, this class is so great