[haiku-commits] r33766 - haiku/trunk/src/kits/interface

  • From: axeld@xxxxxxxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sun, 25 Oct 2009 22:26:54 +0100 (CET)

Author: axeld
Date: 2009-10-25 22:26:54 +0100 (Sun, 25 Oct 2009)
New Revision: 33766
Changeset: http://dev.haiku-os.org/changeset/33766/haiku

Modified:
   haiku/trunk/src/kits/interface/InterfaceDefs.cpp
Log:
* Fixed lots of style violations, many of them introduced with r33732.
* Brecht, is it possible your line break column is one character too short? At
  least you broke some lines without need.


Modified: haiku/trunk/src/kits/interface/InterfaceDefs.cpp
===================================================================
--- haiku/trunk/src/kits/interface/InterfaceDefs.cpp    2009-10-25 20:38:29 UTC 
(rev 33765)
+++ haiku/trunk/src/kits/interface/InterfaceDefs.cpp    2009-10-25 21:26:54 UTC 
(rev 33766)
@@ -8,8 +8,10 @@
  *             Axel Dörfler, axeld@xxxxxxxxxxxxxxxx
  */
 
+
 /*!    Global functions and variables for the Interface Kit */
 
+
 #include <InterfaceDefs.h>
 
 #include <stdio.h>
@@ -94,8 +96,8 @@
 
 namespace BPrivate {
 
-/*!
-       Fills the \a width, \a height, and \a colorSpace parameters according
+
+/*!    Fills the \a width, \a height, and \a colorSpace parameters according
        to the window screen's mode.
        Returns \c true if the mode is known.
 */
@@ -654,14 +656,13 @@
 
        _control_input_server_(&command, &reply);
 
-       if (reply.FindData("keymap", B_ANY_TYPE, &map_array, &map_count)
-               != B_OK) {
+       if (reply.FindData("keymap", B_ANY_TYPE, &map_array, &map_count) != 
B_OK) {
                *map = 0; *key_buffer = 0;
                return;
        }
 
        if (reply.FindData("key_buffer", B_ANY_TYPE, &key_array, 
key_buffer_size)
-               != B_OK) {
+                       != B_OK) {
                *map = 0; *key_buffer = 0;
                return;
        }
@@ -947,6 +948,7 @@
        return acceptFirstClick;
 }
 
+
 rgb_color
 ui_color(color_which which)
 {
@@ -1074,8 +1076,7 @@
 //     #pragma mark -
 
 
-/*!
-       \brief private function used by Deskbar to set window decor
+/*!    \brief private function used by Deskbar to set window decor
        Note, we don't have to be compatible here, and could just change
        the Deskbar not to use this anymore
        \param theme The theme to choose
@@ -1097,8 +1098,8 @@
 
 namespace BPrivate {
 
-/*!
-       \brief queries the server for the number of available decorators
+
+/*!    \brief queries the server for the number of available decorators
        \return the number of available decorators
 */
 int32
@@ -1115,8 +1116,8 @@
        return count;
 }
 
-/*!
-       \brief queries the server for the index of the current decorators
+
+/*!    \brief queries the server for the index of the current decorators
        \return the current decorator's index
 
        If for some bizarre reason this function fails, it returns -1
@@ -1136,9 +1137,7 @@
 }
 
 
-/*!
-       \brief queries the server for the name of the decorator with a certain
-                       index
+/*!    \brief queries the server for the name of the decorator with a certain 
index
        \param index The index of the decorator to get the name for
        \param name BString to receive the name of the decorator
        \return B_OK if successful, B_ERROR if not
@@ -1163,8 +1162,8 @@
        return B_ERROR;
 }
 
-/*!
-       \brief asks the server to draw a decorator preview into a BBitmap
+
+/*!    \brief asks the server to draw a decorator preview into a BBitmap
        \param index The index of the decorator to get the name for
        \param bitmap BBitmap to receive the preview
        \return B_OK if successful, B_ERROR if not.
@@ -1179,8 +1178,7 @@
 }
 
 
-/*!
-       \brief Private function which sets the window decorator for the system.
+/*!    \brief Private function which sets the window decorator for the system.
        \param index Index of the decorator to set
 
        If the index is invalid, this function and the server do nothing
@@ -1382,8 +1380,9 @@
        const float* escapementArray, float width, float ellipsisWidth, float 
size)
 {
        float currentWidth = 0.0;
-       ellipsisWidth /= size;  // test if this is as accurate
-       width /= size;                  //    as escapementArray * size
+       ellipsisWidth /= size;
+               // test if this is as accurate as escapementArray * size
+       width /= size;
        uint32 lastFit = 0, c;
 
        for (c = 0; c < numChars; c++) {
@@ -1472,8 +1471,9 @@
        uint32 left = 0;
        float leftWidth = 0.0;
        while (left < numChars && (leftWidth + (escapementArray[left] * size))
-               < mid)
+                       < mid) {
                leftWidth += (escapementArray[left++] * size);
+       }
 
        if (left == numChars)
                return false;
@@ -1481,8 +1481,9 @@
        float rightWidth = 0.0;
        uint32 right = numChars;
        while (right > left && (rightWidth + (escapementArray[right - 1] * 
size))
-               < mid)
+                       < mid) {
                rightWidth += (escapementArray[--right] * size);
+       }
 
        if (left >= right)
                return false;
@@ -1505,18 +1506,16 @@
        float gap = width - (leftWidth + ellipsisWidth + rightWidth);
        if (left > numChars - right) {
                // try right letter first
-               if (optional_char_fits(escapementArray[right - 1], size, gap)) {
+               if (optional_char_fits(escapementArray[right - 1], size, gap))
                        right--;
-               } else if (optional_char_fits(escapementArray[left], size, 
gap)) {
+               else if (optional_char_fits(escapementArray[left], size, gap))
                        left++;
-               }
        } else {
                // try left letter first
-               if (optional_char_fits(escapementArray[left], size, gap)) {
+               if (optional_char_fits(escapementArray[left], size, gap))
                        left++;
-               } else if (optional_char_fits(escapementArray[right - 1], size, 
gap)) {
+               else if (optional_char_fits(escapementArray[right - 1], size, 
gap))
                        right--;
-               }
        }
 
        // copy characters
@@ -1553,7 +1552,7 @@
        float ellipsisWidth, int32 length, int32 numChars)
 {
        // TODO: that's actually not correct: the string could be smaller than
-       //       ellipsisWidth
+       // ellipsisWidth
        if (string == NULL /*|| width < ellipsisWidth*/) {
                // we don't have room for a single glyph
                strcpy(result, "");


Other related posts: