Warning: session_start(): open(/tmp/sess_p86a0gdr6gsiujvkslhgnaodr2, O_RDWR) failed: No space left on device (28) in /www/H01/htdocs/lib/base/lib_base.php on line 280
Kate Tab Bar Extension openDesktop.org
-
 KDE-Apps.org Applications for the KDE-Desktop 
 GTK-Apps.org Applications using the GTK Toolkit 
 GnomeFiles.org Applications for GNOME 
 MeeGo-Central.org Applications for MeeGo 
 CLI-Apps.org Command Line Applications 
 Qt-Apps.org Free Qt Applications 
 Qt-Prop.org Proprietary Qt Applications 
 Maemo-Apps.org Applications for the Maemo Plattform 
 Java-Apps.org Free Java Applications 
 eyeOS-Apps.org Free eyeOS Applications 
 Wine-Apps.org Wine Applications 
 Server-Apps.org Server Applications 
 apps.ownCloud.com ownCloud Applications 
--
-
 KDE-Look.org Artwork for the KDE-Desktop 
 GNOME-Look.org Artwork for the GNOME-Desktop 
 Xfce-Look.org Artwork for the Xfce-Desktop 
 Box-Look.org Artwork for your Windowmanager 
 E17-Stuff.org Artwork for Enlightenment 
 Beryl-Themes.org Artwork for the Beryl Windowmanager 
 Compiz-Themes.org Artwork for the Compiz Windowmanager 
 EDE-Look.org Themes for your EDE Desktop 
--
-
 Debian-Art.org Stuff for Debian 
 Gentoo-Art.org Artwork for Gentoo Linux 
 SUSE-Art.org Artwork for openSUSE 
 Ubuntu-Art.org Artwork for Ubuntu 
 Kubuntu-Art.org Artwork for Kubuntu 
 LinuxMint-Art.org Artwork for Linux Mint 
 Arch-Stuff.org Art And Stuff for Arch Linux 
 Frugalware-Art.org Themes for Frugalware 
 Fedora-Art.org Artwork for Fedora Linux 
 Mandriva-Art.org Artwork for Mandriva Linux 
--
-
 KDE-Files.org Files for KDE Applications 
 OpenTemplate.org Documents for OpenOffice.org
 GIMPStuff.org Files for GIMP
 InkscapeStuff.org Files for Inkscape
 ScribusStuff.org Files for Scribus
 BlenderStuff.org Textures and Objects for Blender
 VLC-Addons.org Themes and Extensions for VLC
--
-
 KDE-Help.org Support for your KDE Desktop 
 GNOME-Help.org Support for your GNOME Desktop 
 Xfce-Help.org Support for your Xfce Desktop 
--
openDesktop.orgopenDesktop.org:   Applications   Artwork   Linux Distributions   Documents    Linux42.org    OpenSkillz.com   
 
Home
Apps
Artwork
News
Groups
Knowledge
Events
Forum
People
Jobs
Register
Login


-
- Content .- Fans  .- Knowledge Base  . 

Kate Tab Bar Extension

   0.6  

KDE Text Editor

Score 78%
Kate Tab Bar Extension
zoom


Kate Tab Bar Extension
zoom


Kate Tab Bar Extension
zoom


Link:  http://
Downloads:  3394
Submitted:  Oct 17 2005
Updated:  Dec 2 2005

Description:

Requirement: KDE 3.5

NOTE: This plugin will overwrite the Kate Tab Bar Extension included in the KDE module 'kdeaddons'. This is by intention, as the plan is to make this plugin the default for KDE 4.

The Tab Bar Extension supports:
- location: top and bottom
- styles: push buttons, flat buttons, frames
- sort by: opening order, name, URL, file extensions
- number of rows
- minimum and maximum width of tabs
- fixed tab height
- follows current document
- manual highlighting of tabs (context menu)
- text color of modified tabs
- highlight active/current tab
- highlight previous tab
- opacity of background shading (0%-100%)
- load/save (ie session) support
- synchronization of all view (if you have multiple mainwindows)
- "Remove all highlight marks" button
- icons for modified buffers and corrupted files on disk

MD5 checksum:
63d0ccc3fab14b47915b448becbef815 katetabbarextension-0.6.tar.gz

How to install:
tar xvfz katetabbarextension-0.6.tar.gz
cd katetabbarextension-0.6
./configure --prefix=`kde-config --prefix`
make
make install # as root

After this you have to enable the plugin in Kate: Settings > Configure Kate > Plugins > [x] Kate Tab Bar Extension




Changelog:

2005-12-02 version 0.6
- fixed bug: setting the location to top works now also on Kate startup

2005-10-05 version 0.5
- Rewritten for KDE 3.5.x




LicenseGPL
Source
Gentoo(ebuild)
Send to a friend
Subscribe
Other  Content  from accolon
Report inappropriate content



goto page: prev   1  2 

-

 No entry in Settings

 
 by glepore70 on: Oct 1 2006
 
Score 50%

I compiled and installed on Kubuntu Edgy, and the tab bar appears on the bottom of the screen, but there is no corresponding entry in Settings->Configure Kate->plugins. Is there another method for accession the configuration settings?


Reply to this

-
.

 Re: No entry in Settings

 
 by accolon on: Oct 28 2006
 
Score 50%

Yes, invoke the tab bar's config dialog by clicking the small configure icon in the tabbar itself.


Kate Developer
Reply to this

-

 nice plugin

 
 by newman on: Oct 10 2006
 
Score 50%

Very nice plugin. Thanks!

Suggestions:
1) In "bool operator< (KTinyTabButton const&, KTinyTabButton const&)", use QString::localeAwareCompare() instead of "bool QString::operator< (...)" and "bool QString::operator==(...)".
2) In the above "bool operator< (...)", in case of KTinyTabBar::Extension, if both aExt==bExt and aFile==bFile, return a.buttonID() < b.buttonID().
3) User QPtrList instead of QSortedList and get rid of the ugly "global_sortType".

Regards


Reply to this

-

 Re: nice plugin

 
 by accolon on: Oct 25 2006
 
Score 50%

> Suggestions:
> 1) use QString::localeAwareCompare()

maybe you are right here. I have to check again whether it still behaves as I want it to behave :)

> 2) In the above "bool operator< (...)", in case of KTinyTabBar::Extension, if both aExt==bExt and aFile==bFile, return a.buttonID() < b.buttonID().

then it sorts by using the opening order. I prefer the way it is right now, or did I miss something? :)

> 3) User QPtrList instead of QSortedList and get rid of the ugly "global_sortType".

It's ugly, right :) I will have a look for kde4.


Kate Developer
Reply to this

-

 Re: Re: nice plugin

 
 by newman on: Oct 25 2006
 
Score 50%

>> 2) In the above "bool operator< (...)", in case of KTinyTabBar::Extension, if both aExt==bExt and aFile==bFile, return a.buttonID() < b.buttonID().

>then it sorts by using the opening order. I prefer the way it is right now, or did I miss something? :)

Currently, in the bool operator< (const KTinyTabButton& a, const KTinyTabButton& b), when sort order is "file name", and the file names are equal, the the operator returns a.buttonID() < b.buttonID(). There must be a reason for this, and I agree with this behavior. For the same reason, when sort order is "file extension", and the file names are equal (therefore the exensions are equal too), the operator should compare buttonID as well.

:) Regards


Reply to this

-
.

 Re: Re: Re: nice plugin

 
 by accolon on: Oct 27 2006
 
Score 50%

makes sense, I modified the code accordingly for kde4.


Kate Developer
Reply to this

-

 great extension

 
 by kilolima on: Dec 18 2006
 
Score 50%

Just like Homesite now, 7 years later.

seriously, been wanting something like this for Kate for a long time.


Reply to this

-

 Still default

 
 by kdeapps270504 on: Dec 10 2007
 
Score 50%

Is this Tab Bar Extension still going to be the default in KDE4?

The current Tab Bar Extension jumps from one line to another when a simple edit/save is done. I can't see a way to keep the Tar Bar Extension on its *own* line, rather than jumping around. I'm looking for options - thus my arrival here.

Thanks.


Reply to this

-

 Clicking tab shorten

 
 by kdeapps270504 on: Dec 15 2007
 
Score 50%

Nice addition to Kate.

Subject: Clicking Tabs shortens Main Toolbar

When I click the a tab, the "Main Toolbar (KatepartView)" loses actions. Each time I clik a Tab, another action disappears and the Toolbar gets shorter and shorter. I went from 20 to 9 actions. It seems to stop there. When I stop and start Kate the Tool Bar is restored.

I did a reset to default for the Toolbar and the actions I added were gone. But as soon as I clicked a Tab, they reappeared. I stopped and started Kate and the default Toolbar was restored. I clicked multiple Tabs on the Tab Bar Extension and all appeared okay. It is only when I add actions to the Toolbar that this strange behavior starts.

How I added:

Configure->Toolbars
Selected: Main Toolbar KatePartView

I added 3 actions:
Collapse Top Level
Expand Top Level
Highlighting

I clicked on Change Icon for each (although this didn't seem to make a difference).


Reply to this

-
.

 Re: Clicking tab shorten

 
 by accolon on: Feb 22 2008
 
Score 50%

That's a known issue but has nothing to do with the tabbar extension.


Kate Developer
Reply to this

-

 Re: Clicking tab shorten

 
 by kratky on: Mar 2 2008
 
Score 50%

See http://bugs.kde.org/show_bug.cgi?id=56229#c16 for a workaround.


Reply to this

-

 2 Issues

 
 by kdeapps270504 on: Dec 15 2007
 
Score 50%

1. The Tab Bar Extension that was originally installed with Kate had a down arrow on the right-hand side that would expand and show all documents that were open. This was a nice feature because you could go directly to a file.

This Tab Bar Extension is missing that feature. It has two arrows on the right-hand side that scroll the tabs left and right. When you have many files open, clicking a drop-down and selecting from a list is very fast, verses scrolling through the tabs.

2. This Tab Bar Extension does not seem to remember configuration settings. I changed the Tab Location from Bottom to Top, Sort By Document Name, Min Button Width, Button Style, and Tab Highlighting. When I stop Kate and restart, these changes are lost.


Reply to this

-
.

 Re: 2 Issues

 
 by accolon on: Feb 22 2008
 
Score 50%

> 1. The Tab Bar Extension that was originally installed with Kate had a down arrow on the right-hand side that would expand and show all documents that were open. This was a nice feature because you could go directly to a file.

True, that's a nice wish.

> 2. This Tab Bar Extension does not seem to remember configuration settings. I changed the Tab Location from Bottom to Top, Sort By Document Name, Min Button Width, Button Style, and Tab Highlighting. When I stop Kate and restart, these changes are lost.

That works at least in KDE4 and there was a time where it also worked in KDE3. I don't know whether I'll find the time to look into the KDE3-version ever again. Let's see.


Kate Developer
Reply to this

-

 Re: Re: 2 Issues

 
 by FireStorm9 on: Jul 10 2008
 
Score 50%

That's a shame about not fixing it for kde3 users. Even kde4.1 is not ready for public consumption. :(

It seems the problem is it doesn't properly open the katerc file for writing on exit.

If you add the following section manually to the katerc file (default ~/.kde/share/config/katerc), it loads the settings properly, but as stated will not save.

Thanks again for the extension.

[Kate Tab Bar Extension]
button style=0
color active=255,255,196
color modified=255,0,0
color previous=196,255,255
count of rows=1
fixed height=20
follow current tab=true
highlight active=true
highlight modified=true
highlight opacity=100
highlight previous=true
highlighted colors=
highlighted documents=
location top=true
maximum width=150
minimum width=100
plain color activated=128,128,255
plain color mousedown=128,128,255
plain color mouseover=255,128,128
sort type=0


Reply to this

-
.

 Re: Still default

 
 by accolon on: Feb 22 2008
 
Score 50%

Yes, it is the default and already released with KDE 4.0. There were already some fixes which went into KDE 4.0.x.


Kate Developer
Reply to this

-
.

 split view

 
 by noskule on: Feb 29 2008
 
Score 50%
noskulenoskule
netstreams.o rg
Home

hi, is it possible to do a splitview within a tab?
grz nos


Reply to this

-

 Re: split view

 
 by accolon on: Oct 10 2008
 
Score 50%

no.


Reply to this

-
.

 instalin in windows

 
 by hosseinmp on: Dec 5 2013
 
Score 50%

Is it possible to use this in Windows?


Reply to this

goto page: prev   1  2 

Add commentBack




-



 
 
 Who we are
Contact
More about us
Frequently Asked Questions
Register
Twitter
Blog
Explore
Apps
Artwork
Jobs
Knowledge
Events
People
Updates on identi.ca
Updates on Twitter
Content RSS   
Events RSS   

Participate
Groups
Forum
Add Content
Public API
About openDesktop.org
Legal Notice
Spreadshirt Shop
CafePress Shop
Advertising
Sponsor us
Report Abuse
 

Copyright 2007-2016 openDesktop.org Team  
All rights reserved. openDesktop.org is not liable for any content or goods on this site.
All contributors are responsible for the lawfulness of their uploads.
openDesktop is a trademark of the openDesktop.org Team