Changeset 105605 in vbox for trunk/include/VBox/settings.h
- Timestamp:
- Aug 6, 2024 2:00:56 PM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/settings.h
r105087 r105605 650 650 * your settings might never get saved. 651 651 */ 652 struct RecordingScreen Settings653 { 654 RecordingScreen Settings(uint32_t idScreen = UINT32_MAX);655 656 virtual ~RecordingScreen Settings();652 struct RecordingScreen 653 { 654 RecordingScreen(uint32_t idScreen = UINT32_MAX); 655 656 virtual ~RecordingScreen(); 657 657 658 658 void applyDefaults(void); … … 676 676 static void videoCodecToString(const RecordingVideoCodec_T &enmCodec, com::Utf8Str &strCodec); 677 677 678 bool operator==(const RecordingScreen Settings&d) const;678 bool operator==(const RecordingScreen &d) const; 679 679 680 680 /** Screen ID. … … 754 754 /** Map for keeping settings per virtual screen. 755 755 * The key specifies the screen ID. */ 756 typedef std::map<uint32_t, RecordingScreen Settings> RecordingScreenSettingsMap;756 typedef std::map<uint32_t, RecordingScreen> RecordingScreenSettingsMap; 757 757 758 758 /** … … 763 763 * your settings might never get saved. 764 764 */ 765 struct RecordingCommon Settings766 { 767 RecordingCommon Settings();765 struct RecordingCommon 766 { 767 RecordingCommon(); 768 768 769 769 void applyDefaults(void); … … 771 771 bool areDefaultSettings(void) const; 772 772 773 bool operator==(const RecordingCommon Settings&d) const;773 bool operator==(const RecordingCommon &d) const; 774 774 775 775 /** Whether recording as a whole is enabled or disabled. */ … … 782 782 * your settings might never get saved. 783 783 */ 784 struct Recording Settings785 { 786 Recording Settings();784 struct Recording 785 { 786 Recording(); 787 787 788 788 void applyDefaults(void); … … 790 790 bool areDefaultSettings(void) const; 791 791 792 bool operator==(const Recording Settings&that) const;792 bool operator==(const Recording &that) const; 793 793 794 794 /** Common settings for all per-screen recording settings. */ 795 RecordingCommon Settingscommon;795 RecordingCommon common; 796 796 /** Map of handled recording screen settings. 797 797 * The key specifies the screen ID. */ … … 1456 1456 Debugging debugging; 1457 1457 Autostart autostart; 1458 Recording SettingsrecordingSettings;1458 Recording recordingSettings; 1459 1459 1460 1460 SnapshotsList llChildSnapshots; … … 1526 1526 Debugging debugging; 1527 1527 Autostart autostart; 1528 Recording SettingsrecordingSettings;1528 Recording recordingSettings; 1529 1529 1530 1530 StringsMap mapExtraDataItems; … … 1586 1586 void readDebugging(const xml::ElementNode &elmDbg, Debugging &dbg); 1587 1587 void readAutostart(const xml::ElementNode &elmAutostart, Autostart &autostrt); 1588 void readRecordingSettings(const xml::ElementNode &elmRecording, uint32_t cMonitors, Recording Settings&recording);1588 void readRecordingSettings(const xml::ElementNode &elmRecording, uint32_t cMonitors, Recording &recording); 1589 1589 void readGroups(const xml::ElementNode &elmGroups, StringsList &llGroups); 1590 1590 bool readSnapshot(const com::Guid &curSnapshotUuid, const xml::ElementNode &elmSnapshot, Snapshot &snap); … … 1610 1610 void buildDebuggingXML(xml::ElementNode &elmParent, const Debugging &dbg); 1611 1611 void buildAutostartXML(xml::ElementNode &elmParent, const Autostart &autostrt); 1612 void buildRecordingXML(xml::ElementNode &elmParent, const Recording Settings&recording);1612 void buildRecordingXML(xml::ElementNode &elmParent, const Recording &recording); 1613 1613 void buildGroupsXML(xml::ElementNode &elmParent, const StringsList &llGroups); 1614 1614 void buildSnapshotXML(xml::ElementNode &elmParent, const Snapshot &snap);
Note:
See TracChangeset
for help on using the changeset viewer.