Re: vincent - r31337 - abiword/branches/gsoc2012dialogs/src/wp/ap/xp

From: Kathiravelu Pradeeban <kk.pradeeban_at_gmail.com>
Date: Mon Jun 11 2012 - 20:56:10 CEST

Hi Vincent,

On Mon, Jun 11, 2012 at 7:20 PM, Vincent Kang <vincent.abiword@gmail.com> wrote:
> HI Pradeeban
>
> Yes. I will catch up.  I think we can fix a time that I make a summary
> of what I have done in IRC.

Summarizing over irc may not work always, due to the timezone
differences. It is better to send the updates to the mailing list, or
maintain a blog for the summer of code, and share the link of each of
the posts over the irc. This way, we will not miss the updates.

> and  you can also refer to my Google+. I will update every process.
> https://plus.google.com/106514404941389603926/posts

I don't think many of us use Google+. Not sure how reachable is that either.

Regards,
Pradeeban.

>
>
> Current State:
> Already Finished Issues:
> Windows:
> 1. Make Frame expandable
> 2. Table setting dialog improvement
>    add functions for SetWidth and SetHeight
>    Do some works about setting up GUI
>
> Mac:
>    Begin coding in Mac
>
>
> thanks,
>
> Vincent
>
> 2012/6/11 Kathiravelu Pradeeban <kk.pradeeban@gmail.com>:
>> Hi Vincent,
>> Can we have an update on your progress? I can see a few commits - but
>> I just would love to see a quick higher level progress update to see
>> how far have we progressed, against our initial plan. As agreed upon,
>> a weekly update would be preferred.
>>
>> We have less than one month for the mid-evaluations, and I suspect, we
>> are lagging behind the schedule severely.
>>
>> Thank you.
>> Regards,
>> Pradeeban.
>>
>> On Fri, Jun 8, 2012 at 3:18 PM,  <cvs@abisource.com> wrote:
>>>
>>> Author: vincent
>>> Date: 2012-06-08 11:48:09 +0200 (Fri, 08 Jun 2012)
>>> New Revision: 31337
>>>
>>> Modified:
>>>   abiword/branches/gsoc2012dialogs/src/wp/ap/xp/ap_Dialog_FormatFrame.cpp
>>>   abiword/branches/gsoc2012dialogs/src/wp/ap/xp/ap_Dialog_FormatFrame.h
>>>   abiword/branches/gsoc2012dialogs/src/wp/ap/xp/ap_Dialog_FormatTable.cpp
>>>   abiword/branches/gsoc2012dialogs/src/wp/ap/xp/ap_Dialog_FormatTable.h
>>> Log:
>>> make function inline
>>>
>>> Modified: abiword/branches/gsoc2012dialogs/src/wp/ap/xp/ap_Dialog_FormatFrame.cpp
>>> ===================================================================
>>> --- abiword/branches/gsoc2012dialogs/src/wp/ap/xp/ap_Dialog_FormatFrame.cpp     2012-06-07 16:15:34 UTC (rev 31336)
>>> +++ abiword/branches/gsoc2012dialogs/src/wp/ap/xp/ap_Dialog_FormatFrame.cpp     2012-06-08 09:48:09 UTC (rev 31337)
>>> @@ -1049,16 +1049,6 @@
>>>        m_bSettingsChanged = true;
>>>  }
>>>
>>> -float AP_Dialog_FormatFrame::getFrameWidth(void)
>>> -{
>>> -       return m_width;
>>> -}
>>> -
>>> -float AP_Dialog_FormatFrame::getFrameHeight(void)
>>> -{
>>> -       return m_height;
>>> -}
>>> -
>>>  void AP_Dialog_FormatFrame::setBorderColorRight (const UT_RGBColor & clr)
>>>  {
>>>        m_borderColorRight = clr;
>>>
>>> Modified: abiword/branches/gsoc2012dialogs/src/wp/ap/xp/ap_Dialog_FormatFrame.h
>>> ===================================================================
>>> --- abiword/branches/gsoc2012dialogs/src/wp/ap/xp/ap_Dialog_FormatFrame.h       2012-06-07 16:15:34 UTC (rev 31336)
>>> +++ abiword/branches/gsoc2012dialogs/src/wp/ap/xp/ap_Dialog_FormatFrame.h       2012-06-08 09:48:09 UTC (rev 31337)
>>> @@ -184,8 +184,8 @@
>>>        float                                   borderThicknessLeft ()   const { return m_borderThicknessLeft;   }
>>>        float                                   borderThicknessTop ()    const { return m_borderThicknessTop;    }
>>>        float                                   borderThicknessBottom () const { return m_borderThicknessBottom; }
>>> -       float                   getFrameWidth(void);
>>> -       float                   getFrameHeight(void);
>>> +       inline float            getFrameWidth() const {  return m_width; }
>>> +       inline float            getFrameHeight() const { return m_height; }
>>>
>>>        void                                    setPositionMode (FL_FrameFormatMode mode);
>>>
>>>
>>> Modified: abiword/branches/gsoc2012dialogs/src/wp/ap/xp/ap_Dialog_FormatTable.cpp
>>> ===================================================================
>>> --- abiword/branches/gsoc2012dialogs/src/wp/ap/xp/ap_Dialog_FormatTable.cpp     2012-06-07 16:15:34 UTC (rev 31336)
>>> +++ abiword/branches/gsoc2012dialogs/src/wp/ap/xp/ap_Dialog_FormatTable.cpp     2012-06-08 09:48:09 UTC (rev 31337)
>>> @@ -683,16 +683,6 @@
>>>        return _getToggleButtonStatus("left-style");
>>>  }
>>>
>>> -float AP_Dialog_FormatTable::getTableWidth(void)
>>> -{
>>> -       return m_width;
>>> -}
>>> -
>>> -float AP_Dialog_FormatTable::getTableHeight(void)
>>> -{
>>> -       return m_height;
>>> -}
>>> -
>>>  guint AP_Dialog_FormatTable::_findClosestThickness(const char *sthickness) const
>>>  {
>>>        double thickness = UT_convertToInches(sthickness);
>>>
>>> Modified: abiword/branches/gsoc2012dialogs/src/wp/ap/xp/ap_Dialog_FormatTable.h
>>> ===================================================================
>>> --- abiword/branches/gsoc2012dialogs/src/wp/ap/xp/ap_Dialog_FormatTable.h       2012-06-07 16:15:34 UTC (rev 31336)
>>> +++ abiword/branches/gsoc2012dialogs/src/wp/ap/xp/ap_Dialog_FormatTable.h       2012-06-08 09:48:09 UTC (rev 31337)
>>> @@ -122,8 +122,8 @@
>>>        bool                                                            getLeftToggled();
>>>        GR_Image *                          getImage(void) { return m_pImage;}
>>>        FG_Graphic *                        getGraphic(void) { return m_pGraphic;}
>>> -       float                               getTableWidth(void);
>>> -       float                               getTableHeight(void);
>>> +       inline float                        getTableWidth(void) { return m_width; }
>>> +       inline float                        getTableHeight(void) { return m_height; }
>>>
>>>        UT_RGBColor                                                     m_borderColor;
>>>        UT_sint32                                                       m_lineStyle;
>>>
>>> -----------------------------------------------
>>> To unsubscribe from this list, send a message to
>>> abisource-cvs-commit-request@abisource.com with the word
>>> unsubscribe in the message body.
>>
>>
>>
>> --
>> Kathiravelu Pradeeban.
>> Blog: [Llovizna] http://kkpradeeban.blogspot.com/

-- 
Kathiravelu Pradeeban.
Blog: [Llovizna] http://kkpradeeban.blogspot.com/
Received on Mon Jun 11 20:56:43 2012

This archive was generated by hypermail 2.1.8 : Mon Jun 11 2012 - 20:56:43 CEST