18 lines
413 B
C++
18 lines
413 B
C++
#ifndef PROJECTEXPLORERDEFINES_H
|
|
#define PROJECTEXPLORERDEFINES_H
|
|
|
|
namespace olive {
|
|
|
|
/// The minimum size an icon in ProjectExplorer can be
|
|
const int kProjectIconSizeMinimum = 16;
|
|
|
|
/// The maximum size an icon in ProjectExplorer can be
|
|
const int kProjectIconSizeMaximum = 256;
|
|
|
|
/// The default size an icon in ProjectExplorer can be
|
|
const int kProjectIconSizeDefault = 64;
|
|
|
|
}
|
|
|
|
#endif // PROJECTEXPLORERDEFINES_H
|