added BColumnListView to libbe.so

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17927 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval
2006-06-26 15:53:41 +00:00
parent aded7d13c1
commit 58ad2aba29
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -64,6 +64,7 @@ inline bool operator!=(const rgb_color c1, const rgb_color c2)
return (*((uint32*)&c1)) != (*((uint32*)&c2)); return (*((uint32*)&c1)) != (*((uint32*)&c2));
} }
#ifndef __HAIKU__
// Color creation. // Color creation.
inline rgb_color make_color(uint8 red, uint8 green, uint8 blue, uint8 alpha=255) inline rgb_color make_color(uint8 red, uint8 green, uint8 blue, uint8 alpha=255)
@@ -75,6 +76,7 @@ inline rgb_color make_color(uint8 red, uint8 green, uint8 blue, uint8 alpha=255)
c.alpha = alpha; c.alpha = alpha;
return c; return c;
} }
#endif
// Mix two colors together, ignoring their relative alpha channels. // Mix two colors together, ignoring their relative alpha channels.
// If amount is 0, the result is color1; if 255, the result is color2; // If amount is 0, the result is color1; if 255, the result is color2;
+2
View File
@@ -38,8 +38,10 @@ MergeObject <libbe>interface_kit.o :
ChannelControl.cpp ChannelControl.cpp
ChannelSlider.cpp ChannelSlider.cpp
CheckBox.cpp CheckBox.cpp
ColumnListView.cpp
ColorConversion.cpp ColorConversion.cpp
ColorControl.cpp ColorControl.cpp
ColorTools.cpp
Control.cpp Control.cpp
Deskbar.cpp Deskbar.cpp
Dragger.cpp Dragger.cpp