Re: [Evolution-hackers] Contact component in Evolution source code

2008-06-19 Thread svalbard colaco
Hi Milan

Thanks ...
I actually want to Know the first view where its writen "Double_click here
to create a new contact"
the source code for it.
here i can double-click on the canvas and add entries. right?
so is  it the table or mini card now??

once i make entries the entire canvas changes color red/brown etc...

so i need to Know wer to debug..

Thanks & Regards
sv.


On Thu, Jun 19, 2008 at 3:01 PM, Milan Crha <[EMAIL PROTECTED]> wrote:

> On Thu, 2008-06-19 at 12:33 +0530, svalbard colaco wrote:
> > Is it something to do with mini-cards ?
> >
> > What are these e-minicards in Evolution.
> >
> > On Thu, Jun 19, 2008 at 12:03 PM, svalbard colaco
> > <[EMAIL PROTECTED]> wrote:
> > Hi all ;
> >
> > Could any one tell me the   location of the source code for
> > the contact component of the Evolution mail client?
> >
> > The contact component shows in the upper window "double clcik
> > to create a new contact " ; where is the code for this
> >  functionality?
> >
> > Is it in Evolution/addressbook/gui/contact-editor  in
> > e-contact-quick-add.c ??
> >
> > I'm actually searching the code for formation of that
> > rectangle with the Double click to add functionality.
> >
> > Thanks & Regards
> > sv.
>
> Hi,
> all about Contacts is in sources under 'addressbook' directory.
> That has some Views defined, one is a minicard, one is a table.
>
> For table, you can find the double-click method in
> addressbook/gui/widgets/e-addressbook-view.c: (table_double_click)
>
> For minicard it's in
> addressbook/gui/widgets/e-minicard-view.c: (e_minicard_view_event)
>
> In both of these is used a 'eab_show_contact_editor' function (among of
> others). I do not know what exactly you want to do, so I hope this will
> help you at least a bit.
>Bye,
> Milan
>
> ___
> Evolution-hackers mailing list
> Evolution-hackers@gnome.org
> http://mail.gnome.org/mailman/listinfo/evolution-hackers
>
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


Re: [Evolution-hackers] Contact component in Evolution source code

2008-06-19 Thread svalbard colaco
Is it something to do with mini-cards ?

What are these e-minicards in Evolution.

On Thu, Jun 19, 2008 at 12:03 PM, svalbard colaco <[EMAIL PROTECTED]>
wrote:

> Hi all ;
>
> Could any one tell me the   location of the source code for the *contact
> component* of the Evolution mail client?
>
> The contact component shows in the upper window "double clcik to create a
> new contact " ; where is the code for this
>  functionality?
>
> Is it in Evolution/addressbook/gui/contact-editor  in
> e-contact-quick-add.c ??
>
> I'm actually searching the code for formation of that rectangle with the
> Double click to add functionality.
>
> Thanks & Regards
> sv.
>
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


[Evolution-hackers] Contact component in Evolution source code

2008-06-18 Thread svalbard colaco
Hi all ;

Could any one tell me the   location of the source code for the *contact
component* of the Evolution mail client?

The contact component shows in the upper window "double clcik to create a
new contact " ; where is the code for this
 functionality?

Is it in Evolution/addressbook/gui/contact-editor  in  e-contact-quick-add.c
??

I'm actually searching the code for formation of that rectangle with the
Double click to add functionality.

Thanks & Regards
sv.
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


Re: [Evolution-hackers] e_canvas_new in Evolution

2008-06-13 Thread svalbard colaco
Hi Milan

Thanks for your prompt reply,
"aa" is not a member of the ECANVAS structure ;

In gnome_canvas_new_aa() function "aa" is a member of the Gnome_canvas
structure , defined as below
/* Whether the canvas is in antialiased mode or not */
unsigned int aa : 1;
And the link below gives us the details of the two modes of gnome canvas
operation
http://developer.gnome.org/doc/GGAD/z177.html

So making the "aa" modification; will it understand as to what is to be
done?

Are these two modes supported in Ecanvas ?

what do you suggest ?

Thanks & Regards
sv.

On Fri, Jun 13, 2008 at 12:36 PM, Milan Crha <[EMAIL PROTECTED]> wrote:

> On Fri, 2008-06-13 at 12:17 +0530, svalbard colaco wrote:
> > Yup i got the sources but there is nt any anti-aliased"aa"
> >  mode of canvas generation . and e_canvas are diffrent from
> > gnome_canvases
> > i think.
> > Neither did i get a function for repainting a canavs.
> >
> > Any more suggestions?
>
> Hi,
> based on the code, ECanvas is a descendant of the GnomeCanvas. I would
> suggest, for testing, changing e_canvas_new from:
>
> GtkWidget *
> e_canvas_new (void)
> {
>return GTK_WIDGET (g_object_new (E_CANVAS_TYPE, NULL));
> }
>
> to
>
> GtkWidget *
> e_canvas_new (void)
> {
>return GTK_WIDGET (g_object_new (E_CANVAS_TYPE,
>"aa", TRUE, NULL));
> }
>
> or something like that.
> For calling redraw, you can do it in a same way as for GnomeCanvas.
>Bye,
>Milan
>
> ___
> Evolution-hackers mailing list
> Evolution-hackers@gnome.org
> http://mail.gnome.org/mailman/listinfo/evolution-hackers
>
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


Re: [Evolution-hackers] e_canvas_new in Evolution

2008-06-12 Thread svalbard colaco
On Fri, Jun 13, 2008 at 12:17 PM, svalbard colaco <[EMAIL PROTECTED]>
wrote:

> Hi Milan ,
>
> Yup i got the sources but there is nt any anti-aliased"aa"
>  mode of canvas generation . and e_canvas are diffrent from gnome_canvases
> i think.
> Neither did i get a function for repainting a canavs.
>
> Any more suggestions?
>
> Thanks,
> sv.
>
>
> On Fri, Jun 13, 2008 at 12:11 PM, Milan Crha <[EMAIL PROTECTED]> wrote:
>
>> On Fri, 2008-06-13 at 11:52 +0530, svalbard colaco wrote:
>> > Investigating the source code has revealed that this part is formed in
>> > evolution-2.12/widgets/tables e-table.c
>> >  in e_table_setup_table() function using the function e_canvas_new
>> > () , Are there any modes for this
>> >  canvas generated using this  function , like gnome canvas has
>> > gnome_canvas_new() -GDK mode and
>> > gnome_canvas_new_aa () - RGB mode ;
>>
>> Hi,
>> sources of ECanvas are part of Evolution sources, it's in
>> widgets/misc/e-canvas.[hc]
>>Hope that helps,
>> Milan
>>
>>
>
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


[Evolution-hackers] e_canvas_new in Evolution

2008-06-12 Thread svalbard colaco
Hi all,

When Evolution on DirectFB is run the task summary , memo summary appears
black but
 when click on the click-to-add it appears white as expected.

Investigating the source code has revealed that this part is formed in e*
volution-2.12/widgets/tables* e-table.c
 in *e_table_setup_table() *function using the function *e_canvas_new ()* ,
Are there any modes for this
 canvas generated using this  function , like gnome canvas has
gnome_canvas_new() -GDK mode and
gnome_canvas_new_aa () - RGB mode ;


I need to know if these canvases can be generated using gnome_canvas_new()
or gnome_canvas_new_aa() ?
Is this possible ? because using e_canvas_new() is causing the problem ; or
i wanted  Know an "aa" (antialiased) mode of operation
using this function. lke in gnome_canvas_new.

or  I need to know if this GNOME Applications Library e_canvas has any
functions to re-paint ?


Any pointers in this regard wil be of great help..

Awating your inputs , & Thanking you'll in advance.

 Ragards
sv..
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


Re: [Evolution-hackers] [directfb-dev] e-tables are appearing black in colour

2008-06-01 Thread svalbard colaco
Hi Dennis ,

As suggested by you upgraded to a higher version of cairo i.e.1.6.4 ; used
the patches
 but no improvement :(
Any suggestions...

Thanks & regards,
sv.

On Sat, May 31, 2008 at 7:04 PM, Denis Oliver Kropp <[EMAIL PROTECTED]>
wrote:

> svalbard colaco wrote:
>
>> Hi all;
>>
>> On evolution on DirectFb all the e-tables are appearing black in colour ;
>> E-tables are used for the formation of Memos/tasks summary tables...and
>> they appear fine when clicked, (white as expexted);
>>  what could be the reason for this??
>>
>
> Check out the GTK+ and especially Cairo patches here:
>
>http://wiki.mozilla.org/Mobile/DFBPorting
>
> --
> Best regards,
>  Denis Oliver Kropp
>
> .--.
> | DirectFB - Hardware accelerated graphics |
> | http://www.directfb.org/ |
> "--"
>
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


[Evolution-hackers] e-tables are appearing black in colour

2008-05-31 Thread svalbard colaco
Hi all;

On evolution on DirectFb all the e-tables are appearing black in colour ;
E-tables are used for the formation of Memos/tasks summary tables...and they
appear fine when clicked, (white as expexted);
 what could be the reason for this??




Regards
sv.
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


[Evolution-hackers] 'Not Junk' Icon fails to render in Evolution

2008-05-28 Thread svalbard colaco
Hi all,

I cannot find the ' Not Junk'  icon...can any one tell me where can i find
it?? rather it gets rendered by a broken image...

How can i load it??

I 'm using gnome-icon-theme and hicolor ...

Thanks & regards
sv.
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


[Evolution-hackers] ERROR** Cannot connect to Gnome Pilot Daemon. when clicked on Edit --> Synchronization option

2008-05-28 Thread svalbard colaco
Hi all;

I have evolution on DirectFB ; when i click on Edit --> Synchronization
option in the toolbar ; I get an error message stating

*ERROR** Cannot connect to Gnome Pilot Daemon*.

What colud be the reason ? Do i have to install some  additional package?

Please help.

Thanks & Regards
sv.
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


[Evolution-hackers] Evolution Calendar / memeos/ tasks summary windows appear black in colour at startup!!

2008-05-28 Thread svalbard colaco
Hi all;

I have evolution on DirectFB and in my calendar view / memo view / task
view/ windows ;
 The side bar for the calendar /memos/ tasks summary window appears black in
color at first;
But when i click on them it appears white and editable as
expected...Everytime i start up Evolution
These summary windows appear black in the above mention Evolution
components.

What could be the reason for this?

How can i debug the same?

Thanks & Regards
sv.
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


Re: [Evolution-hackers] Running Evolution offline.....

2008-05-21 Thread svalbard colaco
Hi Matthews,

Thanks for your valuable inputs.

According to ur suggestion How do i modify the "command" property of
Evolution panel launcher to "evolution --offline" ? I dont have a clear
undersatnding in thiscan you elaborate?

Is there any thing in the code that can be modified so that a set the
application to offline always before i close the application ,
irrespective of what was the user state before closing ?? This would really
help...I actually need to set the state to offline before closing.

Awaiting your reply.

Thanks & Regards
sv.

Awaiting your reply;
On Wed, May 21, 2008 at 8:46 PM, Matthew Barnes <[EMAIL PROTECTED]> wrote:

> On Wed, 2008-05-21 at 19:42 +0530, svalbard colaco wrote:
> > If i run ./evolution --offline ; i needed to Know what is the Macro or
> > a variable that gets set to keep this offline state, when i run
> > it...and in which file it gets stored??
>
> It's stored in GConf under /apps/evolution/shell/start_offline.  It
> retains the offline state from when you last closed Evolution.  But I
> believe the --offline option was broken for awhile.  It's since been
> fixed, but you may be using a version with it still broken (I don't know
> what version the breakage was introduced).
>
> Assuming that's not the case, if you want to force Evolution to always
> start in offline mode, I suggest modifying the "command" property of
> your Evolution panel launcher to "evolution --offline".
>
> Hope this helps,
> Matthew Barnes
>
> ___
> Evolution-hackers mailing list
> Evolution-hackers@gnome.org
> http://mail.gnome.org/mailman/listinfo/evolution-hackers
>
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


[Evolution-hackers] Running Evolution offline.....

2008-05-21 Thread svalbard colaco
Hi all;

If i run ./evolution --offline ; i needed to Know what is the Macro or a
variable that gets set to keep this offline state, when i run it...and in
which file it gets stored??
As per my undersatnding evolution is by default  run as online.so when i
set the offline option and close the application , it retains ofline
status.. next time i run it;.
for this it might be reading or getting the current status from some
wherewant to know from where it got the status???

I actaully want to start my application as offline by default,...?? what
changes in the code will that require??

Any knowledge in this regard will be of great help.


Thanks & Regards
sv.
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


[Evolution-hackers] GTK and Bonobo Critical Warnings.

2008-05-16 Thread svalbard colaco
Hi all


I have evolution on DFB and i get the following warnings when run;

gtkhtml-WARNING **: Cannot create spell dictionary instance
(iid:OAFIID:GNOME_Spell_Dictionary:0.3)
Spell Dictionary is not supported.

Gtk-CRITICAL **: gtk_icon_info_get_filename: assertion `icon_info != NULL'
failed

Bonobo-CRITICAL **: impl_set_prop: assertion `value != NULL' failed

Bonobo-WARNING **: Activation exception 'Failed to activate
'OAFIID:GNOME_Spell_Control:0.3''
Spell Dictionary is not supported.

Can any on tell me how to debugg the same...Has any one come across these
warnings...?
And what colud be the possible approach to handle them

Thanks & Regards
sv.
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


Re: [Evolution-hackers] Loading of Icons in Evolution

2008-05-13 Thread svalbard colaco
Hi;

Thanks for the reply

The following icons are being rendered as broken icons --
-On the tool bar: Delete,Junk,Not Junk
-In the side bar: the draft,sent, trash icons
-In the component views :Calendar, Memos, Tasks icons
-And most icons on the Menu bar File->New

Debugging has shown that the broken image is rendered in the *
e_icon_factory_get_icon* function
as the* icon->pixbuf *is NULL, and this is so because  the  *load_icon*
function doesnt return  any icon..as in icon=NULL...

CMIIMW..

How can i solve this issue.

Thanks & Regards
sv.


On Tue, May 13, 2008 at 6:38 PM, Ross Burton <[EMAIL PROTECTED]> wrote:

> On Tue, 2008-05-13 at 18:16 +0530, svalbard colaco wrote:
> > Can any one tell me where are the various icons (i.e. .png files )
> > located in the code?
> > i could find some icons in the following path
> >
> > $PREFIX/share/icons/hicolor/24x24/stock/net
> >
> > While some icon cannot be found...
> >
> > Is there any way/ location in which the icons are loaded in Evolution?
>
> Instead of saying "some", say what icon you can't find?  Icons used by
> Evolution are generally either part of evolution, evolution-data-server,
> or gnome-icon-theme.
>
> Ross
> --
> Ross Burton mail: [EMAIL PROTECTED]
>  jabber: [EMAIL PROTECTED]
> www: http://www.burtonini.com./
>  PGP Fingerprint: 1A21 F5B0 D8D0 CFE3 81D4 E25A 2D09 E447 D0B4 33DF
>
>
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


[Evolution-hackers] Loading of Icons in Evolution

2008-05-13 Thread svalbard colaco
Hi all;


Can any one tell me where are the various icons (i.e. .png files ) located
in the code?
i could find some icons in the following path

$PREFIX/share/icons/hicolor/24x24/stock/net

While some icon cannot be found...

Is there any way/ location in which the icons are loaded in Evolution?


Any links or pointers in this regard will be of great help.

Thanks & Regards
sv.
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


[Evolution-hackers] HOW TO HANDLE: Glib-GObject-WARNING :Invalid cast from GdkPixmap to GdkWindow.

2008-05-11 Thread svalbard colaco
Hi all,

I've ported my application on DirectFb backend ; It gets rendred fine but
some menu icons are not displayed
 It gives an 'X' for some of the icons in the tool bar and the menu bar.

Is it anything to do with the following warning??



How to handle such a warning? What colud be the reason for such a warning?
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


[Evolution-hackers] Problem Configuring Evolution with Microsoft exchange server...

2008-04-30 Thread svalbard colaco
Hi all,

Actually i have ported Evolution with DirectFB backend.

Now i'm having problems configuring Evolution with Microsoft Exchange.;

when Evolution with Microsoft exchange configuration
runs it shows first small window asking for password but when i try to
write the password suddenly main window pops up and it hides the earlier
window ,as application ported on DirectFB i can not refocus on small
window.(rather DirectFb doesnt have a windows manager support as of
now.CMIIMW)

How can we solve this issue?? so that that the password window stays
and i,m able to configure it successfully.

Any pointers in this regard will be helpful

Thanks & Regards
sv...
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


[Evolution-hackers] Event handling in Evolution.... Need urgent help

2008-04-28 Thread svalbard colaco
Hi all;

Can any one explain to me how events are handled in Evolution?  Do they make
use of the libbonoboui wrappers to handle the button events?

Like if i click on the Menu bar ->File menu option->New Mail compose option
; What will be the event called...? Rather wer in the code should i look in
for this event handling?

CMIIMW , As per what i understand bonobo forms the ui -engine and the
toolbar and the menu bar..but i cant locate the event handlnd specific
funtions for the Menu items...

Can ne one give some insight on the above issue??

Thanks & Regards
Sv.
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


Re: [Evolution-hackers] Evolution exchange-2.12.3 fails to compile.............Plz need urgent help....

2008-04-28 Thread svalbard colaco
Hi Reid,

Since u have compiled OpenLDAP Installed versions:  2.3.41 ; can u just
brief me on what configuration options did u configure  OpenLDAP with...? as
what features have to be enabled or disabled?(if they r necesary to be).

Thanx
sv.

On Fri, Apr 25, 2008 at 7:53 PM, Reid Thompson <[EMAIL PROTECTED]>
wrote:

>
> On Fri, 2008-04-25 at 19:24 +0530, svalbard colaco wrote:
> > Hi Reid,
> >
> > Thanks for your inputs..
> >
> > Yup i have installed OpenLDAP-2.2.6...It got installed
> > successfully but as mentioned earlier gave errors in
> > evolution-exchange-2.12.3 compilation.
> >  And OpenLDAP-2.3 and higher compilation itself fails
> >
> > Any idea what i should be doing..?
> >
> > Thanks,
> > sv
>
>
> Not sure - I have OpenLDAP Installed versions:  2.3.41 -- so it may be a
> version issue.
> Which distro are you on?
>
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


Re: [Evolution-hackers] Evolution doesnt recognise any mouse click events....PLZ HELP.......

2008-04-25 Thread svalbard colaco
Hi all ,

just adding some more info to this...

i get the followiing error

[...]

(evolution:3860): Gdk-DirectFB-WARNING **:
gdk_display_request_selection_notification Unimplemented function

[...]
could this be the issue??
does this help in debuggin the mentioned issueplz help

Regards
sv..


On Thu, Apr 24, 2008 at 8:59 PM, svalbard colaco <[EMAIL PROTECTED]>
wrote:

> Hi all,
>
> Am porting Evolution Mail client with DFB backendMy main window
> on start up does'nt recognise any mouse click events
> i.e. to say  that when i click on File it shows the drop down list but
> File/New/New mail mesaage does'nt recognise the mouse click ;
> whereas it recognises a key press (i.e. when a return key is hit on it) and
> the corresponding child window gets dispalyed.and the mouse click is
> recognised for  all child windows menus .
>
>
> Why is this so?? Any idea??? plz help in this regard
>
>
> Also some of the icons on the widget or buttons are dispalyed as
> 'X'.plz help in this .
>
> Regards
> sv.
>
>
>
>
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


Re: [Evolution-hackers] Evolution exchange-2.12.3 fails to compile.............Plz need urgent help....

2008-04-25 Thread svalbard colaco
Hi Reid,

Thanks for your inputs..

Yup i have installed OpenLDAP-2.2.6...It got installed
successfully but as mentioned earlier gave errors in
evolution-exchange-2.12.3 compilation.
 And OpenLDAP-2.3 and higher compilation itself fails

Any idea what i should be doing..?

Thanks,
sv




On Fri, Apr 25, 2008 at 5:33 PM, Reid Thompson <[EMAIL PROTECTED]>
wrote:

> On Fri, 2008-04-25 at 13:50 +0530, svalbard colaco wrote:
> > Hi all,
> >
> > I m trying to integrate evlution-exchange-2.12.3 with evolution mail
> > client -2.12.3..but it fails to compile...
> > The following is the error log..
> > Plz help
> >
> > ../addressbook/.libs/libexchangeaddressbook.a(e-book-backend-gal.o):
> > In function `ldap_reconnect':
> >
> /usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:303:
> undefined reference to `ldap_unbind'
>
> do you have the OpenLDAP libraries/development packages installed on
> your system?
>
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


[Evolution-hackers] Evolution exchange-2.12.3 fails to compile.............Plz need urgent help....

2008-04-25 Thread svalbard colaco
Hi all,

I m trying to integrate evlution-exchange-2.12.3 with evolution mail client
-2.12.3..but it fails to compile...
The following is the error log..
Plz help

../addressbook/.libs/libexchangeaddressbook.a(e-book-backend-gal.o): In
function `ldap_reconnect':
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:303:
undefined reference to `ldap_unbind'
../addressbook/.libs/libexchangeaddressbook.a(e-book-backend-gal.o): In
function `gal_reconnect':
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:324:
undefined reference to `ldap_unbind'
../addressbook/.libs/libexchangeaddressbook.a(e-book-backend-gal.o): In
function `ldap_op_finished':
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:391:
undefined reference to `ldap_abandon'
../addressbook/.libs/libexchangeaddressbook.a(e-book-backend-gal.o): In
function `get_contact_handler':
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:478:
undefined reference to `ldap_msgtype'
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:485:
undefined reference to `ldap_first_entry'
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:513:
undefined reference to `ldap_parse_result'
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:518:
undefined reference to `ldap_err2string'
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:522:
undefined reference to `ldap_memfree'
../addressbook/.libs/libexchangeaddressbook.a(e-book-backend-gal.o): In
function `get_contact':
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:623:
undefined reference to `ldap_search_ext'
../addressbook/.libs/libexchangeaddressbook.a(e-book-backend-gal.o): In
function `contact_list_handler':
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:670:
undefined reference to `ldap_msgtype'
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:673:
undefined reference to `ldap_first_entry'
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:687:
undefined reference to `ldap_next_entry'
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:696:
undefined reference to `ldap_parse_result'
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:700:
undefined reference to `ldap_err2string'
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:704:
undefined reference to `ldap_memfree'
../addressbook/.libs/libexchangeaddressbook.a(e-book-backend-gal.o): In
function `get_contact_list':
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:834:
undefined reference to `ldap_search_ext'
../addressbook/.libs/libexchangeaddressbook.a(e-book-backend-gal.o): In
function `build_contact_from_entry':
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:1330:
undefined reference to `ldap_get_dn'
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:1333:
undefined reference to `ldap_memfree'
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:1336:
undefined reference to `ldap_first_attribute'
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:1341:
undefined reference to `ldap_memfree'
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:1344:
undefined reference to `ldap_memfree'
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:1345:
undefined reference to `ldap_next_attribute'
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:1348:
undefined reference to `ber_free'
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:1352:
undefined reference to `ldap_first_attribute'
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:1362:
undefined reference to `ldap_get_values'
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:1373:
undefined reference to `ldap_value_free'
/usr/EVO_BUILD/Evolution/evolution_host/src/evolution-exchange-2.12.3/addressbook/e-book-backend-gal.c:1388:
undefined reference to `

[Evolution-hackers] Evolution doesnt recognise any mouse click events....PLZ HELP.......

2008-04-24 Thread svalbard colaco
Hi all,

Am porting Evolution Mail client with DFB backendMy main window
on start up does'nt recognise any mouse click events
i.e. to say  that when i click on File it shows the drop down list but
File/New/New mail mesaage does'nt recognise the mouse click ;
whereas it recognises a key press (i.e. when a return key is hit on it) and
the corresponding child window gets dispalyed.and the mouse click is
recognised for  all child windows menus .


Why is this so?? Any idea??? plz help in this regard


Also some of the icons on the widget or buttons are dispalyed as
'X'.plz help in this .

Regards
sv.
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


[Evolution-hackers] xid and Dfb_id Issue in porting Evolution mail client on DFB

2008-04-17 Thread svalbard colaco
Hi all;

I m porting Evolution mail client on to DirectFB. which involved
Replacing all the X11 calls and Xlib functionality..
*Part of it was replacing xid with Dfb_id *.. Is it possible are
they similar??

I am new to this...so cant undersatnd the concept of Dfb_id in Evolution
mail client
can ne one plzz help me in this regard..And give a greater undersanding
on the Id concept??
And if the direct repalcement of Xid with dfb_id will hold valid?


Thanking you'll in advance.

Regards
sv...
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


Re: [Evolution-hackers] Issues in porting evolution mail client to directfb backend :Help Nedded.....

2008-04-15 Thread svalbard colaco
Hi ...

Thanks for your valuable insight regarding this issue.

As regard with the broken bonobo build..my make log /install log shows
no errors.n gets built smoothly.. and even evolution runs but with
many things missing in the UI as mentioned earlier...
So i understand that this strikes out the possibility of a bad/broken build
in bonobo..

I wanted to Know what will be the implications of removing/decoupling bonobo
from evolution package.
Is it possble to replace Bonobo functionality by appropriate substitutes at
the Gdk layer..

I need a deeper understanding in this regard...Plzz help...

On Mon, Apr 14, 2008 at 8:39 PM, Ross Burton <[EMAIL PROTECTED]> wrote:

> Please reply to the list.
>
> On Mon, 2008-04-14 at 20:04 +0530, svalbard colaco wrote:
> > Thanx Ross for the input..
> >
> > The following is the Debug Log on running evolutuionwill this
> > be helpful??
>
> > (evolution:32556): Bonobo-WARNING **: ARGH - different serious ORB
> > screwup
>
> Your Bonobo/ORBit is broken.  Whether this is due to a bad build, broken
> configuration, or it just doesn't work on DirectFB, I don't know.
>
> Ross
>
> --
> Ross Burton mail: [EMAIL PROTECTED]
>  jabber: [EMAIL PROTECTED]
> www: http://www.burtonini.com./
>  PGP Fingerprint: 1A21 F5B0 D8D0 CFE3 81D4 E25A 2D09 E447 D0B4 33DF
>
>

On Mon, Apr 14, 2008 at 7:04 PM, svalbard colaco <[EMAIL PROTECTED]>
wrote:

> Hi,
> I am trying to port evolution mail client to Directfb backend.
>
> I have replaced X11 calls with  corresponding Gdk/Gtk function calls,
> found in evolution
> and its dependent libraries so as to remove  linkage to xlib.
>
> Now  I can run the application  with DFB backend  but  when there is a
> requirement of 2/3
> windows(like Edit box,folder view  etc) to be displayed all together , i
> am not able to see these together.
>
> Also, Tool bar is not displayed properly , certain icons in the tool bar
> are missing.
> *even while composing email _message_ edit_ box_ is missing.*
> while configuring the email client,Preferences part is not working
> properly.
>
> Pls give some pointers for the same. Any suggestion or Links in this
> regard will be of great help.
>
> Thanking you'll in advance...
> Sv
>
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


[Evolution-hackers] Issues in porting evolution mail client to directfb backend :Help Nedded.....

2008-04-14 Thread svalbard colaco
Hi,
I am trying to port evolution mail client to Directfb backend.

I have replaced X11 calls with  corresponding Gdk/Gtk function calls, found
in evolution
and its dependent libraries so as to remove  linkage to xlib.

Now  I can run the application  with DFB backend  but  when there is a
requirement of 2/3
windows(like Edit box,folder view  etc) to be displayed all together , i am
not able to see these together.

Also, Tool bar is not displayed properly , certain icons in the tool bar are
missing.
*even while composing email _message_ edit_ box_ is missing.*
while configuring the email client,Preferences part is not working properly.

Pls give some pointers for the same. Any suggestion or Links in this regard
will be of great help.

Thanking you'll in advance...
Sv
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


[Evolution-hackers] Issues in porting evolution mail client to directfb backend

2008-04-13 Thread svalbard colaco
Hi,
I am trying to port evolution mail client to Directfb backend.

I have replaced X11 calls with  corresponding Gdk/Gtk function calls, found
in evolution
and its dependent libraries so as to remove  linkage to xlib.

Now  I can run the application  with DFB backend  but  when there is a
requirement of 2/3
windows(like Edit box,folder view  etc) to be displayed all together , i am
not able to see these together.

Also, Tool bar is not displayed properly , certain icons in the tool bar are
missing.
*even while composing email _message_ edit_ box_ is missing.*
while configuring the email client,Preferences part is not working properly.

Pls give some pointers for the same. Any suggestion or Links in this regard
will be of great help.

Thanking you'll in advance...
Sv
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers