<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Add-Ons Entry Point in Archicad C++ API</title>
    <link>https://community.graphisoft.com/t5/Archicad-C-API/Add-Ons-Entry-Point/m-p/382130#M867</link>
    <description>&lt;P&gt;&lt;A href="https://archicadapi.graphisoft.com/getting-started-with-archicad-add-ons" target="_blank"&gt;https://archicadapi.graphisoft.com/getting-started-with-archicad-add-ons&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 02 Jun 2023 07:07:47 GMT</pubDate>
    <dc:creator>julienK</dc:creator>
    <dc:date>2023-06-02T07:07:47Z</dc:date>
    <item>
      <title>Add-Ons Entry Point</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Add-Ons-Entry-Point/m-p/382119#M866</link>
      <description>&lt;P&gt;I am query how to set an entry point of addon.&lt;/P&gt;&lt;P&gt;Is there someone could provide detail of how to set/change an add on entry point file when running addon in Visual Studio C++?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jun 2023 04:16:26 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Add-Ons-Entry-Point/m-p/382119#M866</guid>
      <dc:creator>Newbie</dc:creator>
      <dc:date>2023-06-02T04:16:26Z</dc:date>
    </item>
    <item>
      <title>Re: Add-Ons Entry Point</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Add-Ons-Entry-Point/m-p/382130#M867</link>
      <description>&lt;P&gt;&lt;A href="https://archicadapi.graphisoft.com/getting-started-with-archicad-add-ons" target="_blank"&gt;https://archicadapi.graphisoft.com/getting-started-with-archicad-add-ons&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jun 2023 07:07:47 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Add-Ons-Entry-Point/m-p/382130#M867</guid>
      <dc:creator>julienK</dc:creator>
      <dc:date>2023-06-02T07:07:47Z</dc:date>
    </item>
    <item>
      <title>Re: Add-Ons Entry Point</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Add-Ons-Entry-Point/m-p/382155#M868</link>
      <description>&lt;P&gt;An information from that link, does it has to be 'Addonmain.cpp' as default entry point?. Could it be something like 'MyAddon.cpp' for entry point?&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jun 2023 12:57:35 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Add-Ons-Entry-Point/m-p/382155#M868</guid>
      <dc:creator>Newbie</dc:creator>
      <dc:date>2023-06-02T12:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: Add-Ons Entry Point</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Add-Ons-Entry-Point/m-p/382156#M869</link>
      <description>&lt;P&gt;The entry points are explained in the 'anatomy of an addon' paragraph in the link I posted.&lt;/P&gt;
&lt;P&gt;An archicad addon doesn't require&amp;nbsp; a Main.cpp to work it can&amp;nbsp; be named whatever you want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The way you interact with archicad&amp;nbsp; is either through menus or dialogs, palettes.&lt;/P&gt;
&lt;P&gt;menus are defined in .grc file&lt;/P&gt;
&lt;P&gt;dialogs or palettes are defined in cpp files.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You link the menu to your functions through MenuCommandHandler.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Look at the blog articles,&amp;nbsp; there is a hello world example that explains all this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jun 2023 13:13:22 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Add-Ons-Entry-Point/m-p/382156#M869</guid>
      <dc:creator>julienK</dc:creator>
      <dc:date>2023-06-02T13:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: Add-Ons Entry Point</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Add-Ons-Entry-Point/m-p/382159#M870</link>
      <description>&lt;P&gt;Thanks so much for your clarification. Besides this, the resource of .grc file explanation is very rare. For example, if I want to display a value getting from API function on the dialogs. Do I need to declare a text or label in .grc file or not? if so, how to implement this?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jun 2023 13:46:53 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Add-Ons-Entry-Point/m-p/382159#M870</guid>
      <dc:creator>Newbie</dc:creator>
      <dc:date>2023-06-02T13:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: Add-Ons Entry Point</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Add-Ons-Entry-Point/m-p/382162#M871</link>
      <description>&lt;P&gt;Yes, every field in a dialog has to be declared in the grc file.&lt;/P&gt;
&lt;P&gt;Look at DG_Test example&amp;nbsp; in the API files.&lt;/P&gt;
&lt;P&gt;Some articles explain this in the documentation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jun 2023 15:01:57 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Add-Ons-Entry-Point/m-p/382162#M871</guid>
      <dc:creator>julienK</dc:creator>
      <dc:date>2023-06-02T15:01:57Z</dc:date>
    </item>
  </channel>
</rss>

