~ubuntu-branches/ubuntu/vivid/mygui/vivid

« back to all changes in this revision

Viewing changes to Wrappers/MyGUI.Export/Generate/MyGUI.Export_MultiListItem.h

  • Committer: Package Import Robot
  • Author(s): Scott Howard, Bret Curtis, Scott Howard
  • Date: 2014-09-18 17:57:48 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20140918175748-dd8va78mvpw1jbes
Tags: 3.2.1-1
[ Bret Curtis ]
* Updated license for majority of files from LGPL to Expat (MIT)

[ Scott Howard ]
* New upstream release
* Updated patch to add build option for system GLEW libraries
* All patches accepted upstream except shared_libraries.patch
* Bumped SONAME due to dropped symbols, updated *.symbols and package
  names
* Updated license of debian/* to Expat with permission of all authors
* Don't install Doxygen autogenerated md5 and map files (thanks
  lintian)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*!
2
 
        @file
3
 
        @author         Generate utility by Albert Semenov
4
 
        @date           01/2009
5
 
        @module
6
 
*/
7
 
 
8
 
#ifndef __EXPORT_WIDGET_MultiListItem_H__
9
 
#define __EXPORT_WIDGET_MultiListItem_H__
10
 
 
11
 
#include "../ExportDefine.h"
12
 
#include "../ExportMarshaling.h"
13
 
#include "MyGUI.Export_MarshalingWidget.h"
14
 
#include "../ExportMarshalingType.h"
15
 
#include <MyGUI.h>
16
 
 
17
 
namespace Export
18
 
{
19
 
 
20
 
        //InsertPoint
21
 
 
22
 
        namespace ScopeMultiListItemMethod_SetItemWidth
23
 
        {
24
 
                MYGUIEXPORT void MYGUICALL ExportMultiListItem_SetItemWidth_value( MyGUI::Widget* _native,
25
 
                        Convert<int>::Type _value )
26
 
                {
27
 
                        static_cast< MyGUI::MultiListItem * >(_native)->setItemWidth(
28
 
                                Convert<int>::From( _value ) );
29
 
                }
30
 
        }
31
 
 
32
 
 
33
 
 
34
 
        namespace ScopeMultiListItemMethod_SetItemResizingPolicy
35
 
        {
36
 
                MYGUIEXPORT void MYGUICALL ExportMultiListItem_SetItemResizingPolicy_value( MyGUI::Widget* _native,
37
 
                        Convert<MyGUI::ResizingPolicy>::Type _value )
38
 
                {
39
 
                        static_cast< MyGUI::MultiListItem * >(_native)->setItemResizingPolicy(
40
 
                                Convert<MyGUI::ResizingPolicy>::From( _value ) );
41
 
                }
42
 
        }
43
 
 
44
 
 
45
 
 
46
 
   
47
 
 
48
 
 
49
 
   
50
 
 
51
 
 
52
 
   
53
 
 
54
 
 
55
 
   
56
 
 
57
 
 
58
 
}
59
 
 
60
 
#endif // __EXPORT_WIDGET_MultiListItem_H__