~ubuntu-branches/ubuntu/trusty/blender/trusty

« back to all changes in this revision

Viewing changes to intern/ghost/intern/GHOST_DisplayManagerWin32.h

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2013-03-06 12:08:47 UTC
  • mfrom: (1.5.1) (14.1.8 experimental)
  • Revision ID: package-import@ubuntu.com-20130306120847-frjfaryb2zrotwcg
Tags: 2.66a-1ubuntu1
* Resynchronize with Debian (LP: #1076930, #1089256, #1052743, #999024,
  #1122888, #1147084)
* debian/control:
  - Lower build-depends on libavcodec-dev since we're not
    doing the libav9 transition in Ubuntu yet

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
 
43
43
/**
44
44
 * Manages system displays  (WIN32 implementation).
45
 
 * @author      Maarten Gribnau
46
 
 * @date        September 21, 2001
 
45
 * \author      Maarten Gribnau
 
46
 * \date        September 21, 2001
47
47
 */
48
48
class GHOST_DisplayManagerWin32 : public GHOST_DisplayManager
49
49
{
55
55
 
56
56
        /**
57
57
         * Returns the number of display devices on this system.
58
 
         * @param numDisplays The number of displays on this system.
59
 
         * @return Indication of success.
 
58
         * \param numDisplays The number of displays on this system.
 
59
         * \return Indication of success.
60
60
         */
61
61
        virtual GHOST_TSuccess getNumDisplays(GHOST_TUns8& numDisplays) const;
62
62
 
63
63
        /**
64
64
         * Returns the number of display settings for this display device.
65
 
         * @param display The index of the display to query with 0 <= display < getNumDisplays().
66
 
         * @param setting The number of settings of the display device with this index.
67
 
         * @return Indication of success.
 
65
         * \param display The index of the display to query with 0 <= display < getNumDisplays().
 
66
         * \param setting The number of settings of the display device with this index.
 
67
         * \return Indication of success.
68
68
         */
69
69
        virtual GHOST_TSuccess getNumDisplaySettings(GHOST_TUns8 display, GHOST_TInt32& numSettings) const;
70
70
 
71
71
        /**
72
72
         * Returns the current setting for this display device. 
73
 
         * @param display The index of the display to query with 0 <= display < getNumDisplays().
74
 
         * @param index   The setting index to be returned.
75
 
         * @param setting The setting of the display device with this index.
76
 
         * @return Indication of success.
 
73
         * \param display The index of the display to query with 0 <= display < getNumDisplays().
 
74
         * \param index   The setting index to be returned.
 
75
         * \param setting The setting of the display device with this index.
 
76
         * \return Indication of success.
77
77
         */
78
78
        virtual GHOST_TSuccess getDisplaySetting(GHOST_TUns8 display, GHOST_TInt32 index, GHOST_DisplaySetting& setting) const;
79
79
 
80
80
        /**
81
81
         * Returns the current setting for this display device. 
82
 
         * @param display The index of the display to query with 0 <= display < getNumDisplays().
83
 
         * @param setting The current setting of the display device with this index.
84
 
         * @return Indication of success.
 
82
         * \param display The index of the display to query with 0 <= display < getNumDisplays().
 
83
         * \param setting The current setting of the display device with this index.
 
84
         * \return Indication of success.
85
85
         */
86
86
        virtual GHOST_TSuccess getCurrentDisplaySetting(GHOST_TUns8 display, GHOST_DisplaySetting& setting) const;
87
87
 
88
88
        /**
89
89
         * Changes the current setting for this display device. 
90
 
         * @param display The index of the display to query with 0 <= display < getNumDisplays().
91
 
         * @param setting The current setting of the display device with this index.
92
 
         * @return Indication of success.
 
90
         * \param display The index of the display to query with 0 <= display < getNumDisplays().
 
91
         * \param setting The current setting of the display device with this index.
 
92
         * \return Indication of success.
93
93
         */
94
94
        virtual GHOST_TSuccess setCurrentDisplaySetting(GHOST_TUns8 display, const GHOST_DisplaySetting& setting);
95
95