summaryrefslogtreecommitdiff
path: root/libopie2/opiemm/opieexif.h
Unidiff
Diffstat (limited to 'libopie2/opiemm/opieexif.h') (more/less context) (show whitespace changes)
-rw-r--r--libopie2/opiemm/opieexif.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/libopie2/opiemm/opieexif.h b/libopie2/opiemm/opieexif.h
index efaed71..fb06bf8 100644
--- a/libopie2/opiemm/opieexif.h
+++ b/libopie2/opiemm/opieexif.h
@@ -123,17 +123,24 @@ public:
123 int getWhitebalance() { return Whitebalance; } 123 int getWhitebalance() { return Whitebalance; }
124 int getMeteringMode() { return MeteringMode; } 124 int getMeteringMode() { return MeteringMode; }
125 float getCCDWidth() { return CCDWidth; } 125 float getCCDWidth() { return CCDWidth; }
126 float getExposureBias() { return ExposureBias; } 126 float getExposureBias() { return ExposureBias; }
127 int getExposureProgram() { return ExposureProgram; } 127 int getExposureProgram() { return ExposureProgram; }
128 int getISOequivalent() { return ISOequivalent; } 128 int getISOequivalent() { return ISOequivalent; }
129 int getCompressionLevel() { return CompressionLevel; } 129 int getCompressionLevel() { return CompressionLevel; }
130 QString getUserComment() { return UserComment; } 130 QString getUserComment() { return UserComment; }
131 QString getComment() { return Comment; } 131 QString getComment() { return Comment; }
132 QImage getThumbnail(); 132 QImage getThumbnail();
133 bool isThumbnailSane(); 133 bool isThumbnailSane();
134 bool isNullThumbnail() { return !isThumbnailSane(); } 134 bool isNullThumbnail() { return !isThumbnailSane(); }
135
136 // some helpers
137 static QString color_mode_to_string( bool b );
138 static QString compression_to_string( int level );
139 static QString white_balance_string( int i );
140 static QString metering_mode( int i);
141 static QString exposure_program( int i );
135}; 142};
136 143
137} 144}
138} 145}
139#endif 146#endif