Re: Netbeans 8.2 download link

2022-03-03 Thread Jonathan Bergh
hi Brad,

Thanks a lot - yes unfortunately I'm on Windows (for work purposes, not
preference) and after quite a bit of searching was unable to find anything
precompiled available. If only we could all run *nix.

Cheers
Jon

On Fri, Mar 4, 2022 at 4:51 AM Bradley Willcott 
wrote:

> Hi Jonathon.
> I am running Fedora Linux (34).  I installed 'ccls' using the 'dnf'
> package installer, collecting it from the '@fedora' repository.
> For MSWin I suppose you will have to do some searching, unless some else
> on this list can help there.
>
> Regards,
> Brad.
>
> On 3/3/22 17:51, Jonathan Bergh wrote:
>
> Hi Brad,
>
> Thanks a lot - appreciate that advice.
>
> I actually tried that route previously, but started having strange issues
> with my gradle based projects not long after that (previously working
> projects would not load, even after clearing the cache etc). I am not sure
> whether that was related to the gradle stuff itself or funny things
> happening from updates from older plugin centers (really not sure, i have
> no insight / experience into how it all works), but I ended up doing a
> clean install to get everything running again.
>
> regarding the ccls approach - do you still need to compile your own
> language server, or are their prebuilt binaries available now?
>
> best regards
> jonathan
>
> On Thu, Mar 3, 2022 at 9:30 PM Bradley Willcott 
> wrote:
>
>> Hi Jonathon.
>> You may not know that NB12+ can be used for both C and C++ development.
>>
>> Go to "Tools/Plugins"
>> Select "Settings", then Activate "Netbeans 8.2 Plugin Portal"
>> Select "Updates" and press [Check for Updates]
>> Select "Available Plugins" and press [Check for Newest]
>>
>> Then scroll down and look for "C/C++" - select and install this plugin.
>> You might also want to select and install "CPPLite Kit" as well.
>> This last one will require "ccls" to be installed on your system.
>>
>> Hope this helps.
>> Brad.
>>
>> On 2/3/22 10:50, Jonathan Bergh wrote:
>> > hi all,
>> >
>> > just wondering if anyone has / knows the (a) link for the old Oracle
>> > Netbeans 8.2 download. I know there is any floating around, but the
>> > one on the Apache Netbeans pre-Apache page currently redirects to a
>> > dead end.
>> >
>> > Needed because of the C++ capabilities.
>> >
>> > Thanks in advance
>> > Regards
>> > Jon
>>
>>
>


Using Quick Search API in Standalone Swing Apps?

2022-03-03 Thread Tim Mullé
Hi,

Is it possible to use the Quick Search API in standalone Swing Apps?

We have a home grown IDE like interface (not using NB Platform) and we’d like 
to add a quick search feature ust like NetBeans has. 

I took a look at the source code for the quick search module and it looks like 
it might be tied to the UI (TopComponents)
And rely on the XML file system for things like category name, keystroke, etc. 
I thought it used ServiceLoader but it directly reads the root virtual file 
system.

I didn’t see a way to provide those items externally since we don’t have the NB 
file system and our SearchProviders won’t be made via
The NetBeans wizards.


Just curious…

- Tim


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: Netbeans 8.2 download link

2022-03-03 Thread Bradley Willcott

Hi Jonathon.
I am running Fedora Linux (34).  I installed 'ccls' using the 'dnf' 
package installer, collecting it from the '@fedora' repository.
For MSWin I suppose you will have to do some searching, unless some else 
on this list can help there.


Regards,
Brad.

On 3/3/22 17:51, Jonathan Bergh wrote:

Hi Brad,

Thanks a lot - appreciate that advice.

I actually tried that route previously, but started having strange 
issues with my gradle based projects not long after that (previously 
working projects would not load, even after clearing the cache etc). I 
am not sure whether that was related to the gradle stuff itself or 
funny things happening from updates from older plugin centers (really 
not sure, i have no insight / experience into how it all works), but I 
ended up doing a clean install to get everything running again.


regarding the ccls approach - do you still need to compile your own 
language server, or are their prebuilt binaries available now?


best regards
jonathan

On Thu, Mar 3, 2022 at 9:30 PM Bradley Willcott 
 wrote:


Hi Jonathon.
You may not know that NB12+ can be used for both C and C++
development.

Go to "Tools/Plugins"
Select "Settings", then Activate "Netbeans 8.2 Plugin Portal"
Select "Updates" and press [Check for Updates]
Select "Available Plugins" and press [Check for Newest]

Then scroll down and look for "C/C++" - select and install this
plugin.
You might also want to select and install "CPPLite Kit" as well.
This last one will require "ccls" to be installed on your system.

Hope this helps.
Brad.

On 2/3/22 10:50, Jonathan Bergh wrote:
> hi all,
>
> just wondering if anyone has / knows the (a) link for the old
Oracle
> Netbeans 8.2 download. I know there is any floating around, but the
> one on the Apache Netbeans pre-Apache page currently redirects to a
> dead end.
>
> Needed because of the C++ capabilities.
>
> Thanks in advance
> Regards
> Jon



Double click initially

2022-03-03 Thread Nigel Evenden
When using prime faces you need to double click initially on a button.
This is annoying, but I have faith in Netbeans and am sure the problem is
understood by now.
Regards
Nigel


UI Gesture Collection still in NetBeans 12.x?

2022-03-03 Thread Tim Mullé
Hi,

Was just wondering if the UI Gesture Collection framework is still in NB 12.x? 
And if not can we manually add it ourselves?

I was about to follow this tutorial and noticed the libraries are not in 12.6 
under the NB category and I couldn’t find the code in GitHub.

https://netbeans.apache.org/tutorials/nbm-gesture.html

Thanks..


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



declaring a gradle dependency on a NB Platform

2022-03-03 Thread Stefan Holst
Hi there,

so far I have been declaring dependency on a large NB platform by referencing the jar files "manually" I wonder if there is a more direct way through the NB Platform development plugin?

My dependency declaration looks like


def Base = 'C:/Program Files/SomeCompany/SomeProgram/SomeVersion/java'

dependencies {

    implementation fileTree(dir: Base + '/lib', include: '*.jar')

    implementation fileTree(dir: Base + '/core', include: '*.jar')

    implementation fileTree(dir: Base + '/modules', include: '*.jar')

    implementation fileTree(dir: Base + '/modules/ext', include: '*.jar’)
    ……

}

But would the definition of the NB Platform not be something that could be referenced more directly?
I look forward to suggestions!
Stefan


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: Netbeans 8.2 download link

2022-03-03 Thread Jonathan Bergh
Hi Brad,

Thanks a lot - appreciate that advice.

I actually tried that route previously, but started having strange issues
with my gradle based projects not long after that (previously working
projects would not load, even after clearing the cache etc). I am not sure
whether that was related to the gradle stuff itself or funny things
happening from updates from older plugin centers (really not sure, i have
no insight / experience into how it all works), but I ended up doing a
clean install to get everything running again.

regarding the ccls approach - do you still need to compile your own
language server, or are their prebuilt binaries available now?

best regards
jonathan

On Thu, Mar 3, 2022 at 9:30 PM Bradley Willcott 
wrote:

> Hi Jonathon.
> You may not know that NB12+ can be used for both C and C++ development.
>
> Go to "Tools/Plugins"
> Select "Settings", then Activate "Netbeans 8.2 Plugin Portal"
> Select "Updates" and press [Check for Updates]
> Select "Available Plugins" and press [Check for Newest]
>
> Then scroll down and look for "C/C++" - select and install this plugin.
> You might also want to select and install "CPPLite Kit" as well.
> This last one will require "ccls" to be installed on your system.
>
> Hope this helps.
> Brad.
>
> On 2/3/22 10:50, Jonathan Bergh wrote:
> > hi all,
> >
> > just wondering if anyone has / knows the (a) link for the old Oracle
> > Netbeans 8.2 download. I know there is any floating around, but the
> > one on the Apache Netbeans pre-Apache page currently redirects to a
> > dead end.
> >
> > Needed because of the C++ capabilities.
> >
> > Thanks in advance
> > Regards
> > Jon
>
>


Re: Netbeans 8.2 download link

2022-03-03 Thread Bradley Willcott

Hi Jonathon.
You may not know that NB12+ can be used for both C and C++ development.

Go to "Tools/Plugins"
Select "Settings", then Activate "Netbeans 8.2 Plugin Portal"
Select "Updates" and press [Check for Updates]
Select "Available Plugins" and press [Check for Newest]

Then scroll down and look for "C/C++" - select and install this plugin.
You might also want to select and install "CPPLite Kit" as well.
This last one will require "ccls" to be installed on your system.

Hope this helps.
Brad.

On 2/3/22 10:50, Jonathan Bergh wrote:

hi all,

just wondering if anyone has / knows the (a) link for the old Oracle 
Netbeans 8.2 download. I know there is any floating around, but the 
one on the Apache Netbeans pre-Apache page currently redirects to a 
dead end.


Needed because of the C++ capabilities.

Thanks in advance
Regards
Jon



-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists