Re: Newcomer to KDE enviorment

2016-03-05 Thread Lydia Pintscher
On Sat, Mar 5, 2016 at 7:26 PM Manthan Sharma  wrote:

> Hi,
>
> I am new to KDE environment, can anyone guide me through process of build
> application from source and submitting patch?
>
>
Hi Manthan,

Please have a look at the developer guide here:
https://techbase.kde.org/Books


Cheers
Lydia


Re: GSoC need help with idea

2016-03-05 Thread Lydia Pintscher
On Wed, Mar 2, 2016 at 10:22 PM Jaydeep Chauhan  wrote:

> Hello Everyone,
> I'm Jaydeep Chauhan I wanted to discuss idea for GSoC which is not listed
> and It's related with Ksystemlog.
> Thank You.
>

Hey Jaydeep,

Thanks for your interest in working with us this GSoC round. Just go ahead
and ask your questions here. Then we can hopefully find the right person to
answer them.

Cheers
Lydia


Re: Google Summer of Code 2016 - C# bindings for Qt

2016-03-05 Thread Martin Klapetek
Hi,

On Sat, Mar 5, 2016 at 5:25 AM, Valorie Zimmerman <
valorie.zimmer...@gmail.com> wrote:

> Hi all,
>
> I've invited Joao to the webapp and approved the list subscription and
> post, and answered a bit there. However, since Joao and the student
> are both new to KDE, I would like to ask another experienced KDE
> mentor to step up to co-mentor this task.
>
> If you are not already invited to the webapp, please send me your
> google-connected account, and sub to KDE-Soc-Mentor ML.
>
> We always like to have co-mentors for GSoC, but I think it is
> mandatory for this proposal.
>

While I cannot really co-mentor on the technical level for lack
of knowledge of C#, I'm happy to be the KDE "guide-mentor"
for this task if nobody with better knowledge of C# steps up.

Cheers
-- 
Martin Klapetek | KDE Developer


Newcomer to KDE enviorment

2016-03-05 Thread Manthan Sharma
Hi,

I am new to KDE environment, can anyone guide me through process of build
application from source and submitting patch?


Re: Google Summer of Code 2016 - C# bindings for Qt

2016-03-05 Thread Valorie Zimmerman
Hi all,

On Thu, Mar 3, 2016 at 2:41 PM, Sebastian Kügler  wrote:
> Hi Joao,
>
> On Thursday, March 03, 2016 19:36:05 Joao Matos wrote:
>> Hi Sebastian and the rest of the KDE community,
>>
>> I'd like to propose to mentor Dimitar but I have no idea what the policy of
>> the KDE project
>> is regarding the possibility of allowing mentors external to the community.
>>
>> I believe I am the best person to mentor Dimitar due to a couple of factors:
>
> Cool. :)
>
>> - Succesfully mentored Dimitar and several other students on previous GSoC
>> editions.
>> - I am the maintainer of the CppSharp project that QtSharp is based on.
>> - I am also a contributor to QtSharp so I know pretty well what needs to be
>> done and how to do it.
>>
>> In fact, I was already planning on mentoring Dimitar under GSoC as part of
>> the Mono community,
>> but Mono was not accepted as an organization this year.
>
> Best is to get in touch with the KDE SoC admins on the mailinglist kde-
> s...@kde.org , they can answer your questions and get you set up to mentor.
>
>> On Thu, Mar 3, 2016 at 5:58 PM, Sebastian Kügler  wrote:
>> > On Thursday, March 03, 2016 06:20:49 PM Arno Rehn wrote:
>> > > having worked with Dimitar before, I'd recommend to accept QtSharp as a
>> > > project under the KDE umbrella for this year's gsoc (if that's
>> > > possible).
>> > > Dimitar has done some good work on Qyoto and SMOKE in the past. I think
>> > > C# and Qt are a good fit, so I fully support creating bindings for it.
>> > > This project might even attract some more people from the Windows side
>> > > to contribute to Qt and KDE.
>> >
>> > A question that is probably important down the road: Can you or someone
>> > else
>> > mentor Dimitar and his project?
>
> --
> sebas
>
> Sebastian Kügler|http://vizZzion.org| http://kde.org

I've invited Joao to the webapp and approved the list subscription and
post, and answered a bit there. However, since Joao and the student
are both new to KDE, I would like to ask another experienced KDE
mentor to step up to co-mentor this task.

If you are not already invited to the webapp, please send me your
google-connected account, and sub to KDE-Soc-Mentor ML.

We always like to have co-mentors for GSoC, but I think it is
mandatory for this proposal.

Thanks.

Valorie


Re: KConfig - setStandardButtons() breaks Help button?

2016-03-05 Thread Thomas Lübking

On Samstag, 5. März 2016 08:34:27 CEST, Frederik Schwarzer wrote:

Since in my use case, some of the values in the dialog are calculated 
and (to my understanding) cannot be handled correctly by Kcfg, I want 
to get rif of the "Restore Defaults" button. So I add this line:


 dialog->setStandardButtons(QDialogButtonBox::Ok |
 QDialogButtonBox::Cancel | QDialogButtonBox::Help);

but then the Help button does not open the Help browser anymore.



::setStandardButtons simply forwards the call to the internal button box which 
nukes all button objects (incl. their slot connections) and recreates them w/ 
the new item list.
The most straight forward solution is likely to hide or delete 
button(QDialogButtonBox::RestoreDefaults)

Otherwise you'll have to grep through to the buttonbox and remove it 
"correctly" or rebind the help button to the showHelp() slot.
It though looks like you'd destroy more bindings by resetting the 
standardButtons (which you all need to restore)


I'm not sure the HIG team would like to remove the defaults button, though.
:-P

Rather replace the restore defaults button, resp. re-link it to your own 
calculation slot.


Cheers,
Thomas